Lines Matching refs:Bitmap
81 memcpy(&object->Bitmap[offset], &color, 1); in VGLSetXY()
84 memcpy(&object->Bitmap[offset], &color, 2); in VGLSetXY()
87 memcpy(&object->Bitmap[offset], &color, 3); in VGLSetXY()
90 memcpy(&object->Bitmap[offset], &color, 4); in VGLSetXY()
99 memcpy(&object->Bitmap[soffset], &color, 1); in VGLSetXY()
101 memcpy(&object->Bitmap[soffset], (byte *)&color + 1, 2); in VGLSetXY()
104 memcpy(&object->Bitmap[soffset], &color, 2); in VGLSetXY()
106 memcpy(&object->Bitmap[soffset], (byte *)&color + 2, 1); in VGLSetXY()
109 memcpy(&object->Bitmap[soffset], &color, 3); in VGLSetXY()
116 object->Bitmap[(unsigned)(VGLAdpInfo.va_line_width*y)+(x/4)] = ((byte)color); in VGLSetXY()
128 object->Bitmap[offset] |= (byte)color; in VGLSetXY()
152 memcpy(&color, &object->Bitmap[offset], 1); in VGLGetXY()
155 memcpy(&color, &object->Bitmap[offset], 2); in VGLGetXY()
158 memcpy(&color, &object->Bitmap[offset], 3); in VGLGetXY()
161 memcpy(&color, &object->Bitmap[offset], 4); in VGLGetXY()
493 src.Bitmap = alloca(object->VXsize * object->PixelBytes); in VGLClear()
497 bcopy(&color, src.Bitmap + i * object->PixelBytes, object->PixelBytes); in VGLClear()
507 memset(object->Bitmap, (byte)color, VGLAdpInfo.va_line_width*object->VYsize); in VGLClear()
523 memset(object->Bitmap, (byte)color, len); in VGLClear()