diff options
author | Brian <[email protected]> | 2008-02-05 16:32:15 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-02-06 09:35:38 -0700 |
commit | 4650b35846e8e87fb0d74573a5f66452bb449b4b (patch) | |
tree | 2fdc925f9ffd00e7196993a1177504aedd6189e1 /src/mesa/state_tracker/st_context.h | |
parent | af6b12cc76b40c86f3b144a7f5cd3ef1278863d0 (diff) |
gallium: add bitmap/drawpixels texcoord bias support
The state tracker will call pipe->get_paramf(PIPE_CAP_BITMAP_TEXCOORD_BIAS)
to get a bias factor for adjusting the texcoords used in bitmap/drawpixels.
This allows us to compensate for small differences in rasterization from
one device to another.
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 2b6f8743f38..a756055898d 100644 --- a/src/mesa/state_tracker/st_context.h +++ b/src/mesa/state_tracker/st_context.h @@ -143,6 +143,8 @@ struct st_context GLfloat polygon_offset_scale; /* ?? */ + GLfloat bitmap_texcoord_bias; + /** Mapping from VERT_RESULT_x to post-transformed vertex slot */ const GLuint *vertex_result_to_slot; |