Searched refs:VGLBitmap (Results 1 – 7 of 7) sorted by relevance
/dflybsd-src/lib/libvgl/ |
H A D | vgl.h | 47 } VGLBitmap; typedef 74 VGLBitmap *Image; 75 VGLBitmap *Mask; 94 extern VGLBitmap *VGLDisplay; 101 int __VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, VGLBitmap *dst, int dstx, int dsty, int wid… 102 int VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, VGLBitmap *dst, int dstx, int dsty, int width… 103 VGLBitmap *VGLBitmapCreate(int type, int xsize, int ysize, byte *bits); 104 void VGLBitmapDestroy(VGLBitmap *object); 105 int VGLBitmapAllocateBits(VGLBitmap *object); 114 int VGLSetVScreenSize(VGLBitmap *object, int VXsize, int VYsize); [all …]
|
H A D | bitmap.c | 46 WriteVerticalLine(VGLBitmap *dst, int x, int y, int width, byte *line) in WriteVerticalLine() 159 ReadVerticalLine(VGLBitmap *src, int x, int y, int width, byte *line) in ReadVerticalLine() 254 __VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, in __VGLBitmapCopy() 255 VGLBitmap *dst, int dstx, int dsty, int width, int hight) in __VGLBitmapCopy() 318 VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, in VGLBitmapCopy() 319 VGLBitmap *dst, int dstx, int dsty, int width, int hight) in VGLBitmapCopy() 329 VGLBitmap 332 VGLBitmap *object; in VGLBitmapCreate() 338 object = (VGLBitmap *)malloc(sizeof(*object)); in VGLBitmapCreate() 353 VGLBitmapDestroy(VGLBitmap *object) in VGLBitmapDestroy() [all …]
|
H A D | mouse.c | 77 static VGLBitmap VGLMouseStdAndMask = 79 static VGLBitmap VGLMouseStdOrMask = 81 static VGLBitmap *VGLMouseAndMask, *VGLMouseOrMask; 83 static VGLBitmap VGLMouseSave = 96 VGLBitmap buffer = in VGLMousePointerShow() 180 VGLMouseSetImage(VGLBitmap *AndMask, VGLBitmap *OrMask) in VGLMouseSetImage()
|
H A D | simple.c | 45 VGLSetXY(VGLBitmap *object, int x, int y, byte color) in VGLSetXY() 83 VGLGetXY(VGLBitmap *object, int x, int y) in VGLGetXY() 126 VGLLine(VGLBitmap *object, int x1, int y1, int x2, int y2, byte color) in VGLLine() 160 VGLBox(VGLBitmap *object, int x1, int y1, int x2, int y2, byte color) in VGLBox() 169 VGLFilledBox(VGLBitmap *object, int x1, int y1, int x2, int y2, byte color) in VGLFilledBox() 177 set4pixels(VGLBitmap *object, int x, int y, int xc, int yc, byte color) in set4pixels() 195 VGLEllipse(VGLBitmap *object, int xc, int yc, int a, int b, byte color) in VGLEllipse() 218 set2lines(VGLBitmap *object, int x, int y, int xc, int yc, byte color) in set2lines() 231 VGLFilledEllipse(VGLBitmap *object, int xc, int yc, int a, int b, byte color) in VGLFilledEllipse() 254 VGLClear(VGLBitmap *object, byte color) in VGLClear()
|
H A D | main.c | 43 VGLBitmap *VGLDisplay; 137 VGLDisplay = (VGLBitmap *)malloc(sizeof(VGLBitmap)); in VGLInit() 430 VGLSetVScreenSize(VGLBitmap *object, int VXsize, int VYsize) in VGLSetVScreenSize() 454 VGLPanScreen(VGLBitmap *object, int x, int y) in VGLPanScreen()
|
H A D | text.c | 73 VGLBitmapPutChar(VGLBitmap *Object, int x, int y, byte ch, in VGLBitmapPutChar() 121 VGLBitmapString(VGLBitmap *Object, int x, int y, char *str, in VGLBitmapString()
|
/dflybsd-src/share/examples/libvgl/ |
H A D | demo.c | 40 VGLBitmap *tmp; in main()
|