diff options
author | bde <bde@FreeBSD.org> | 2001-10-03 15:20:03 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2001-10-03 15:20:03 +0000 |
commit | a98e38f50d0289fd685563332985b4afcfd85126 (patch) | |
tree | 82610eafbc2dc40c910f14355516e5fc4164331e /lib/libvgl | |
parent | 174605ab568334f3c04545db6687e3eed90f5674 (diff) | |
download | FreeBSD-src-a98e38f50d0289fd685563332985b4afcfd85126.zip FreeBSD-src-a98e38f50d0289fd685563332985b4afcfd85126.tar.gz |
Fixed bitrot in synopsis. The change of the color type from byte to u_long
had not reached here.
Diffstat (limited to 'lib/libvgl')
-rw-r--r-- | lib/libvgl/vgl.3 | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/libvgl/vgl.3 b/lib/libvgl/vgl.3 index 10a9679..96a7eb3 100644 --- a/lib/libvgl/vgl.3 +++ b/lib/libvgl/vgl.3 @@ -93,20 +93,20 @@ .Fn VGLMouseSetImage "VGLBitmap *AndMask" "VGLBitmap *OrMask" .Ft void .Fn VGLMouseSetStdImage "void" -.Ft byte +.Ft u_long .Fn VGLGetXY "VGLBitmap *object" "int x" "int y" .Ft void -.Fn VGLSetXY "VGLBitmap *object" "int x" "int y" "byte color" +.Fn VGLSetXY "VGLBitmap *object" "int x" "int y" "u_long color" .Ft void -.Fn VGLLine "VGLBitmap *object" "int x1" "int y1" "int x2" "int y2" "byte color" +.Fn VGLLine "VGLBitmap *object" "int x1" "int y1" "int x2" "int y2" "u_long color" .Ft void -.Fn VGLBox "VGLBitmap *object" "int x1" "int y1" "int x2" "int y2" "byte color" +.Fn VGLBox "VGLBitmap *object" "int x1" "int y1" "int x2" "int y2" "u_long color" .Ft void -.Fn VGLFilledBox "VGLBitmap *object" "int x1" "int y1" "int x2" "int y2" "byte color" +.Fn VGLFilledBox "VGLBitmap *object" "int x1" "int y1" "int x2" "int y2" "u_long color" .Ft void -.Fn VGLEllipse "VGLBitmap *object" "int xc" "int yc" "int a" "int b" "byte color" +.Fn VGLEllipse "VGLBitmap *object" "int xc" "int yc" "int a" "int b" "u_long color" .Ft void -.Fn VGLFilledEllipse "VGLBitmap *object" "int xc" "int yc" "int a" "int b" "byte color" +.Fn VGLFilledEllipse "VGLBitmap *object" "int xc" "int yc" "int a" "int b" "u_long color" .Ft VGLBitmap * .Fn VGLBitmapCreate "int type" "int xsize" "int ysize" "byte *bits" .Ft void @@ -120,7 +120,7 @@ .Ft void .Fn VGLBitmapString "VGLBitmap *Object" "int x" "int y" "char *str" "byte fgcol" "byte bgcol" "int fill" "int dir" .Ft void -.Fn VGLClear "VGLBitmap *object" "byte color" +.Fn VGLClear "VGLBitmap *object" "u_long color" .Ft void .Fn VGLSetPalette "byte *red" "byte *green" "byte *blue" .Ft void |