Lines Matching refs:Bitmap
79 memcpy(&object->Bitmap[offset], &color, 1); in VGLSetXY()
82 memcpy(&object->Bitmap[offset], &color, 2); in VGLSetXY()
85 memcpy(&object->Bitmap[offset], &color, 3); in VGLSetXY()
88 memcpy(&object->Bitmap[offset], &color, 4); in VGLSetXY()
97 memcpy(&object->Bitmap[soffset], &color, 1); in VGLSetXY()
99 memcpy(&object->Bitmap[soffset], (byte *)&color + 1, 2); in VGLSetXY()
102 memcpy(&object->Bitmap[soffset], &color, 2); in VGLSetXY()
104 memcpy(&object->Bitmap[soffset], (byte *)&color + 2, 1); in VGLSetXY()
107 memcpy(&object->Bitmap[soffset], &color, 3); in VGLSetXY()
114 object->Bitmap[(unsigned)(VGLAdpInfo.va_line_width*y)+(x/4)] = ((byte)color); in VGLSetXY()
126 object->Bitmap[offset] |= (byte)color; in VGLSetXY()
150 memcpy(&color, &object->Bitmap[offset], 1); in VGLGetXY()
153 memcpy(&color, &object->Bitmap[offset], 2); in VGLGetXY()
156 memcpy(&color, &object->Bitmap[offset], 3); in VGLGetXY()
159 memcpy(&color, &object->Bitmap[offset], 4); in VGLGetXY()
491 src.Bitmap = alloca(object->VXsize * object->PixelBytes); in VGLClear()
495 bcopy(&color, src.Bitmap + i * object->PixelBytes, object->PixelBytes); in VGLClear()
505 memset(object->Bitmap, (byte)color, VGLAdpInfo.va_line_width*object->VYsize); in VGLClear()
521 memset(object->Bitmap, (byte)color, len); in VGLClear()