Home
last modified time | relevance | path

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

/freebsd/lib/libvgl/
H A Dvgl.h47 } VGLBitmap; typedef
80 VGLBitmap *Image;
81 VGLBitmap *Mask;
100 extern VGLBitmap *VGLDisplay;
101 extern VGLBitmap VGLVDisplay;
108 int __VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, VGLBitmap *dst, int dstx, int dsty, int wid…
109 int VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, VGLBitmap *dst, int dstx, int dsty, int width…
110 VGLBitmap *VGLBitmapCreate(int type, int xsize, int ysize, byte *bits);
111 void VGLBitmapDestroy(VGLBitmap *object);
112 int VGLBitmapAllocateBits(VGLBitmap *object);
[all …]
H A Dbitmap.c45 WriteVerticalLine(VGLBitmap *dst, int x, int y, int width, byte *line) in WriteVerticalLine()
161 __VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, in __VGLBitmapCopy()
162 VGLBitmap *dst, int dstx, int dsty, int width, int hight) in __VGLBitmapCopy()
222 VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, in VGLBitmapCopy()
223 VGLBitmap *dst, int dstx, int dsty, int width, int hight) in VGLBitmapCopy()
251 VGLBitmap
254 VGLBitmap *object; in VGLBitmapCreate()
260 object = (VGLBitmap *)malloc(sizeof(*object)); in VGLBitmapCreate()
276 VGLBitmapDestroy(VGLBitmap *object) in VGLBitmapDestroy()
284 VGLBitmapAllocateBits(VGLBitmap *object) in VGLBitmapAllocateBits()
[all …]
H A Dsimple.c50 VGLSetXY(VGLBitmap *object, int x, int y, u_long color) in VGLSetXY()
135 VGLGetXY(VGLBitmap *object, int x, int y) in VGLGetXY()
174 plot(VGLBitmap * object, int x, int y, int flag, u_long color) in plot()
185 VGLLine(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color) in VGLLine()
369 VGLBox(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color) in VGLBox()
378 VGLFilledBox(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color) in VGLFilledBox()
386 set4pixels(VGLBitmap *object, int x, int y, int xc, int yc, u_long color) in set4pixels()
404 VGLEllipse(VGLBitmap *object, int xc, int yc, int a, int b, u_long color) in VGLEllipse()
427 set2lines(VGLBitmap *object, int x, int y, int xc, int yc, u_long color) in set2lines()
440 VGLFilledEllipse(VGLBitmap *object, int xc, int yc, int a, int b, u_long color) in VGLFilledEllipse()
[all …]
H A Dmain.c46 VGLBitmap *VGLDisplay;
47 VGLBitmap VGLVDisplay;
177 VGLDisplay = (VGLBitmap *)malloc(sizeof(VGLBitmap)); in VGLInit()
479 VGLSetVScreenSize(VGLBitmap *object, int VXsize, int VYsize) in VGLSetVScreenSize()
508 VGLPanScreen(VGLBitmap *object, int x, int y) in VGLPanScreen()
H A Dmouse.c158 static VGLBitmap VGLMouseLargeAndMask =
161 static VGLBitmap VGLMouseLargeOrMask =
164 static VGLBitmap VGLMouseSmallAndMask =
167 static VGLBitmap VGLMouseSmallOrMask =
170 static VGLBitmap *VGLMouseAndMask, *VGLMouseOrMask;
252 VGLMouseSetImage(VGLBitmap *AndMask, VGLBitmap *OrMask) in VGLMouseSetImage()
284 VGLBitmap *ormask; in VGLMouseInit()
H A Dtext.c74 VGLBitmapPutChar(VGLBitmap *Object, int x, int y, byte ch, in VGLBitmapPutChar()
126 VGLBitmapString(VGLBitmap *Object, int x, int y, char *str, in VGLBitmapString()
/freebsd/share/examples/libvgl/
H A Ddemo.c41 VGLBitmap *tmp; in main()