home *** CD-ROM | disk | FTP | other *** search
- { }
- { EGA Graphic Primitive for Turbo Pascal 3.01A, Version 01FEB86. }
- { (C) 1986 by Kent Cedola, 2015 Meadow Lake Ct., Norfolk, VA, 23518 }
- { }
- { Description: Set the current style for line drawing primitives. }
- { Setting the shading will set the shading flag on and setting the }
- { current color will reset it zero. If the shading flag is zero then }
- { the current color will be used, else the line style. }
- { }
-
- procedure GPFLOOD1(x1,x2,y1,y2,sadr,flg: Integer; var shade; merge,color,
- x,y,bc: Integer); external 'GPFLOOD.BIN';
-
- procedure GPFLOOD(color: Integer);
- begin
- GPFLOOD1(GDVW_X1,GDVW_X2,GDVW_Y1,GDVW_Y2,GDGSADR,GDS_FLG,GDSHADE1,GDMERGE,
- GDCOLOR,GDCUR_X,GDCUR_Y,color);
- end;