Lines Matching refs:Bitmap
105 object->Bitmap[y*object->VXsize+x]=((byte)color); in VGLSetXY()
108 object->Bitmap[VGLSetSegment(y*object->VXsize+x)]=((byte)color); in VGLSetXY()
114 bcopy(b, &object->Bitmap[(y*object->VXsize+x) * object->PixelBytes], in VGLSetXY()
122 bcopy(b, &object->Bitmap[offset], object->PixelBytes); in VGLSetXY()
127 object->Bitmap[(unsigned)(VGLAdpInfo.va_line_width*y)+(x/4)] = ((byte)color); in VGLSetXY()
139 object->Bitmap[offset] |= (byte)color; in VGLSetXY()
163 return object->Bitmap[((y*object->VXsize)+x)]; in VGLGetXY()
165 return object->Bitmap[VGLSetSegment(y*object->VXsize+x)]; in VGLGetXY()
169 bcopy(&object->Bitmap[(y*object->VXsize+x) * object->PixelBytes], in VGLGetXY()
176 bcopy(&object->Bitmap[offset], b, object->PixelBytes); in VGLGetXY()
181 return object->Bitmap[(unsigned)(VGLAdpInfo.va_line_width*y)+(x/4)]; in VGLGetXY()
189 return (object->Bitmap[offset]&(0x80>>(x%8))) ? 1 : 0; /* XXX */ in VGLGetXY()
195 color |= (object->Bitmap[offset] & mask) ? (1 << i) : 0; in VGLGetXY()
513 memset(object->Bitmap, (byte)color, object->VXsize*object->VYsize); in VGLClear()
521 memset(object->Bitmap, (byte)color, len); in VGLClear()
531 bcopy(b, object->Bitmap + i, object->PixelBytes); in VGLClear()
543 bcopy(b, object->Bitmap + offset + i, object->PixelBytes); in VGLClear()
552 memset(object->Bitmap, (byte)color, VGLAdpInfo.va_line_width*object->VYsize); in VGLClear()
566 memset(object->Bitmap, (byte)color, len); in VGLClear()