Lines Matching refs:Pixel
572 save->RedScale = ctx->Pixel.RedScale; in _mesa_meta_begin()
573 save->RedBias = ctx->Pixel.RedBias; in _mesa_meta_begin()
574 save->GreenScale = ctx->Pixel.GreenScale; in _mesa_meta_begin()
575 save->GreenBias = ctx->Pixel.GreenBias; in _mesa_meta_begin()
576 save->BlueScale = ctx->Pixel.BlueScale; in _mesa_meta_begin()
577 save->BlueBias = ctx->Pixel.BlueBias; in _mesa_meta_begin()
578 save->AlphaScale = ctx->Pixel.AlphaScale; in _mesa_meta_begin()
579 save->AlphaBias = ctx->Pixel.AlphaBias; in _mesa_meta_begin()
580 save->MapColorFlag = ctx->Pixel.MapColorFlag; in _mesa_meta_begin()
581 ctx->Pixel.RedScale = 1.0F; in _mesa_meta_begin()
582 ctx->Pixel.RedBias = 0.0F; in _mesa_meta_begin()
583 ctx->Pixel.GreenScale = 1.0F; in _mesa_meta_begin()
584 ctx->Pixel.GreenBias = 0.0F; in _mesa_meta_begin()
585 ctx->Pixel.BlueScale = 1.0F; in _mesa_meta_begin()
586 ctx->Pixel.BlueBias = 0.0F; in _mesa_meta_begin()
587 ctx->Pixel.AlphaScale = 1.0F; in _mesa_meta_begin()
588 ctx->Pixel.AlphaBias = 0.0F; in _mesa_meta_begin()
589 ctx->Pixel.MapColorFlag = GL_FALSE; in _mesa_meta_begin()
898 ctx->Pixel.RedScale = save->RedScale; in _mesa_meta_end()
899 ctx->Pixel.RedBias = save->RedBias; in _mesa_meta_end()
900 ctx->Pixel.GreenScale = save->GreenScale; in _mesa_meta_end()
901 ctx->Pixel.GreenBias = save->GreenBias; in _mesa_meta_end()
902 ctx->Pixel.BlueScale = save->BlueScale; in _mesa_meta_end()
903 ctx->Pixel.BlueBias = save->BlueBias; in _mesa_meta_end()
904 ctx->Pixel.AlphaScale = save->AlphaScale; in _mesa_meta_end()
905 ctx->Pixel.AlphaBias = save->AlphaBias; in _mesa_meta_end()
906 ctx->Pixel.MapColorFlag = save->MapColorFlag; in _mesa_meta_end()
2165 const GLfloat dstX1 = dstX + width * ctx->Pixel.ZoomX; in _mesa_meta_CopyPixels()
2166 const GLfloat dstY1 = dstY + height * ctx->Pixel.ZoomY; in _mesa_meta_CopyPixels()
2231 const GLint tileX = (GLint) (x + i * ctx->Pixel.ZoomX); in tiled_draw_pixels()
2237 const GLint tileY = (GLint) (y + j * ctx->Pixel.ZoomY); in tiled_draw_pixels()
2399 ctx->Pixel.IndexShift == 0 && in _mesa_meta_DrawPixels()
2400 ctx->Pixel.IndexOffset == 0 && in _mesa_meta_DrawPixels()
2464 const GLfloat x1 = x + width * ctx->Pixel.ZoomX; in _mesa_meta_DrawPixels()
2465 const GLfloat y1 = y + height * ctx->Pixel.ZoomY; in _mesa_meta_DrawPixels()