/**
 ** MAJORLN2.C ---- lines parallel with the Y axis
 **
 ** Copyright (c) 1995 Csaba Biegl, 820 Stirrup Dr, Nashville, TN 37221
 ** [e-mail: csaba@vuse.vanderbilt.edu] See "doc/copying.cb" for details.
 **/

#include "libgrx.h"
#include "clipping.h"

void GrVLine(int xx,int y1,int y2,GrColor c)
{
	clip_vline(CURC,xx,y1,y2);
	mouse_block(CURC,xx,y1,xx,y2);
	(*FDRV->drawvline)(
	    xx + CURC->gc_xoffset,
	    y1 + CURC->gc_yoffset,
	    y2 - y1 + 1,
	    c
	);
	mouse_unblock();
}
