Lines Matching refs:VGLPlane
51 byte *VGLPlane[4]; in WriteVerticalLine() local
61 VGLPlane[0] = VGLBuf; in WriteVerticalLine()
62 VGLPlane[1] = VGLPlane[0] + bwidth; in WriteVerticalLine()
63 VGLPlane[2] = VGLPlane[1] + bwidth; in WriteVerticalLine()
64 VGLPlane[3] = VGLPlane[2] + bwidth; in WriteVerticalLine()
72 VGLPlane[0][planepos] = word; in WriteVerticalLine()
73 VGLPlane[1][planepos] = word>>8; in WriteVerticalLine()
74 VGLPlane[2][planepos] = word>>16; in WriteVerticalLine()
75 VGLPlane[3][planepos] = word>>24; in WriteVerticalLine()
82 VGLPlane[0][planepos] = word; in WriteVerticalLine()
83 VGLPlane[1][planepos] = word>>8; in WriteVerticalLine()
84 VGLPlane[2][planepos] = word>>16; in WriteVerticalLine()
85 VGLPlane[3][planepos] = word>>24; in WriteVerticalLine()
97 VGLPlane[i][planepos] |= dst->Bitmap[pos+planepos] & mask[end_offset]; in WriteVerticalLine()
99 VGLPlane[i][0] |= dst->Bitmap[pos] & ~mask[start_offset]; in WriteVerticalLine()
100 bcopy(&VGLPlane[i][0], dst->Bitmap + pos, bwidth); in WriteVerticalLine()
104 VGLPlane[i][planepos] |= dst->Bitmap[offset] & mask[end_offset]; in WriteVerticalLine()
108 VGLPlane[i][0] |= dst->Bitmap[offset] & ~mask[start_offset]; in WriteVerticalLine()
111 bcopy(&VGLPlane[i][bwidth - last], dst->Bitmap + offset, len); in WriteVerticalLine()