diff options
author | Brian Paul <[email protected]> | 2008-04-16 16:52:12 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-04-16 16:53:44 -0600 |
commit | 4b822a101680532ce6df52904af91194b78a16ba (patch) | |
tree | 8f4740365e3761f98c3cd215803d7e8caa44fa76 /src/mesa/state_tracker/st_context.h | |
parent | 52544aa23bebe68d6fc9b13dc55f6bb8c03430ff (diff) |
gallium: implement RGBA pixel maps in the pixel transfer fragment program
Diffstat (limited to 'src/mesa/state_tracker/st_context.h')
-rw-r--r-- | src/mesa/state_tracker/st_context.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.h b/src/mesa/state_tracker/st_context.h index d89e54c43c1..ae1ba41d4fb 100644 --- a/src/mesa/state_tracker/st_context.h +++ b/src/mesa/state_tracker/st_context.h @@ -138,6 +138,8 @@ struct st_context GLuint user_prog_sn; /**< user fragment program serial no. */ struct st_fragment_program *combined_prog; GLuint combined_prog_sn; + struct pipe_texture *pixelmap_texture; + boolean pixelmap_enabled; /**< use the pixelmap texture? */ } pixel_xfer; /** for glBitmap */ |