Lines Matching refs:Bitmap
55 object->Bitmap[y*object->VXsize+x]=(color); in VGLSetXY()
58 object->Bitmap[VGLSetSegment(y*object->VXsize+x)]=(color); in VGLSetXY()
63 object->Bitmap[(unsigned)(VGLAdpInfo.va_line_width*y)+(x/4)] = (color); in VGLSetXY()
75 object->Bitmap[offset] |= color; in VGLSetXY()
98 return object->Bitmap[((y*object->VXsize)+x)]; in VGLGetXY()
100 return object->Bitmap[VGLSetSegment(y*object->VXsize+x)]; in VGLGetXY()
103 return object->Bitmap[(unsigned)(VGLAdpInfo.va_line_width*y)+(x/4)]; in VGLGetXY()
111 return (object->Bitmap[offset]&(0x80>>(x%8))) ? 1 : 0; /* XXX */ in VGLGetXY()
117 color |= (object->Bitmap[offset] & mask) ? (1 << i) : 0; in VGLGetXY()
264 memset(object->Bitmap, color, object->VXsize*object->VYsize); in VGLClear()
272 memset(object->Bitmap, color, len); in VGLClear()
281 memset(object->Bitmap, color, VGLAdpInfo.va_line_width*object->VYsize); in VGLClear()
295 memset(object->Bitmap, color, len); in VGLClear()