Lines Matching refs:pixel
129 GLuint pixel = (GLuint) xmesa->clearpixel;
133 pixel = ((pixel >> 8) & 0x00ff) | ((pixel << 8) & 0xff00);
139 ptr2[i] = pixel;
184 register GLuint pixel = (GLuint) xmesa->clearpixel;
190 pixel = ((pixel >> 24) & 0x000000ff)
191 | ((pixel >> 8) & 0x0000ff00)
192 | ((pixel << 8) & 0x00ff0000)
193 | ((pixel << 24) & 0xff000000);
200 if (pixel == 0) {
202 memset(ptr4, pixel, 4 * n);
207 ptr4[i] = pixel;
216 ptr4[i] = pixel;
310 ctx->Pixel.ZoomX == 1.0 && /* no zooming */
311 ctx->Pixel.ZoomY == 1.0 &&
337 * The image format must be GL_BGRA to match the PF_8R8G8B pixel format.
443 ctx->Pixel.ZoomX == 1.0 && /* no zooming */
444 ctx->Pixel.ZoomY == 1.0 &&
471 * match the PF_5R6G5B pixel format.
572 ctx->Pixel.ZoomX == 1.0 && /* no zooming */
573 ctx->Pixel.ZoomY == 1.0 &&
575 ctx->Pixel.ReadBuffer == GL_FRONT && /* copy from front buf */
603 * for the color buffer. Don't support zooming, pixel transfer, etc.