Home
last modified time | relevance | path

Searched refs:PixelBytes (Results 1 – 4 of 4) sorted by relevance

/trueos/lib/libvgl/
HDsimple.c111 color2mem(color, b, object->PixelBytes); in VGLSetXY()
112 bcopy(b, &object->Bitmap[(y*object->VXsize+x) * object->PixelBytes], in VGLSetXY()
113 object->PixelBytes); in VGLSetXY()
118 color2mem(color, b, object->PixelBytes); in VGLSetXY()
119 offset = VGLSetSegment((y*object->VXsize+x) * object->PixelBytes); in VGLSetXY()
120 bcopy(b, &object->Bitmap[offset], object->PixelBytes); in VGLSetXY()
167 bcopy(&object->Bitmap[(y*object->VXsize+x) * object->PixelBytes], in VGLGetXY()
168 b, object->PixelBytes); in VGLGetXY()
169 return (mem2color(b, object->PixelBytes)); in VGLGetXY()
173 offset = VGLSetSegment((y*object->VXsize+x) * object->PixelBytes); in VGLGetXY()
[all …]
HDbitmap.c150 width = width * dst->PixelBytes; in WriteVerticalLine()
151 pos = (dst->VXsize * y + x) * dst->PixelBytes; in WriteVerticalLine()
169 address = dst->Bitmap + (dst->VXsize * y + x) * dst->PixelBytes; in WriteVerticalLine()
170 bcopy(line, address, width * dst->PixelBytes); in WriteVerticalLine()
265 width = width * src->PixelBytes; in ReadVerticalLine()
266 pos = (src->VXsize * y + x) * src->PixelBytes; in ReadVerticalLine()
284 address = src->Bitmap + (src->VXsize * y + x) * src->PixelBytes; in ReadVerticalLine()
285 bcopy(address, line, width * src->PixelBytes); in ReadVerticalLine()
HDmain.c197 VGLDisplay->PixelBytes = 1; in VGLInit()
201 VGLDisplay->PixelBytes = 1; in VGLInit()
204 VGLDisplay->PixelBytes = VGLModeInfo.vi_pixel_size; in VGLInit()
205 switch (VGLDisplay->PixelBytes) { in VGLInit()
HDvgl.h46 int PixelBytes; member