Home
last modified time | relevance | path

Searched refs:VGLBitmap (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/lib/libvgl/
H A Dvgl.h49 } VGLBitmap; typedef
82 VGLBitmap *Image;
83 VGLBitmap *Mask;
102 extern VGLBitmap *VGLDisplay;
103 extern VGLBitmap VGLVDisplay;
110 int __VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, VGLBitmap *dst, int dstx, int dsty, int wid…
111 int VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, VGLBitmap *dst, int dstx, int dsty, int width…
113 void VGLBitmapDestroy(VGLBitmap *object);
114 int VGLBitmapAllocateBits(VGLBitmap *object);
115 void VGLBitmapCvt(VGLBitmap *src, VGLBitmap *dst);
[all …]
H A Dbitmap.c48 WriteVerticalLine(VGLBitmap *dst, int x, int y, int width, byte *line) in WriteVerticalLine()
164 __VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, in __VGLBitmapCopy()
165 VGLBitmap *dst, int dstx, int dsty, int width, int hight) in __VGLBitmapCopy()
225 VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, in VGLBitmapCopy()
226 VGLBitmap *dst, int dstx, int dsty, int width, int hight) in VGLBitmapCopy()
254 VGLBitmap
257 VGLBitmap *object; in VGLBitmapCreate()
263 object = (VGLBitmap *)malloc(sizeof(*object)); in VGLBitmapCreate()
279 VGLBitmapDestroy(VGLBitmap *object) in VGLBitmapDestroy()
287 VGLBitmapAllocateBits(VGLBitmap *object) in VGLBitmapAllocateBits()
[all …]
H A Dsimple.c52 VGLSetXY(VGLBitmap *object, int x, int y, u_long color) in VGLSetXY()
137 VGLGetXY(VGLBitmap *object, int x, int y) in VGLGetXY()
176 plot(VGLBitmap * object, int x, int y, int flag, u_long color) in plot()
187 VGLLine(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color) in VGLLine()
371 VGLBox(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color) in VGLBox()
380 VGLFilledBox(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color) in VGLFilledBox()
388 set4pixels(VGLBitmap *object, int x, int y, int xc, int yc, u_long color) in set4pixels()
406 VGLEllipse(VGLBitmap *object, int xc, int yc, int a, int b, u_long color) in VGLEllipse()
429 set2lines(VGLBitmap *object, int x, int y, int xc, int yc, u_long color) in set2lines()
465 VGLClear(VGLBitmap *object, u_long color) in VGLClear()
[all …]
H A Dmain.c48 VGLBitmap *VGLDisplay;
49 VGLBitmap VGLVDisplay;
179 VGLDisplay = (VGLBitmap *)malloc(sizeof(VGLBitmap)); in VGLInit()
481 VGLSetVScreenSize(VGLBitmap *object, int VXsize, int VYsize) in VGLSetVScreenSize()
510 VGLPanScreen(VGLBitmap *object, int x, int y) in VGLPanScreen()
H A Dmouse.c160 static VGLBitmap VGLMouseLargeAndMask =
163 static VGLBitmap VGLMouseLargeOrMask =
166 static VGLBitmap VGLMouseSmallAndMask =
169 static VGLBitmap VGLMouseSmallOrMask =
172 static VGLBitmap *VGLMouseAndMask, *VGLMouseOrMask;
254 VGLMouseSetImage(VGLBitmap *AndMask, VGLBitmap *OrMask) in VGLMouseSetImage()
286 VGLBitmap *ormask; in VGLMouseInit()
H A Dtext.c76 VGLBitmapPutChar(VGLBitmap *Object, int x, int y, byte ch, in VGLBitmapPutChar()
128 VGLBitmapString(VGLBitmap *Object, int x, int y, char *str, in VGLBitmapString()
/freebsd-13.1/share/examples/libvgl/
H A Ddemo.c43 VGLBitmap *tmp; in main()