diff options
| author | Keith Whitwell <keith@tungstengraphics.com> | 2008-03-09 15:07:09 +0100 | 
|---|---|---|
| committer | Keith Whitwell <keith@tungstengraphics.com> | 2008-03-09 20:23:03 +0000 | 
| commit | 99691f38c278f1d4aeb0617b149109644e3571fb (patch) | |
| tree | e49faa19efaeea07be030b2c62dc66d0d2311b75 | |
| parent | 5d1fc690417796c953f763b7d8ed19576dc0f473 (diff) | |
gallium: add some commonly implemented bits of hw state
| -rw-r--r-- | src/gallium/include/pipe/p_state.h | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index 49a003b923..e338a27383 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -108,6 +108,7 @@ struct pipe_rasterizer_state     unsigned line_stipple_enable:1;     unsigned line_stipple_factor:8;  /**< [1..256] actually */     unsigned line_stipple_pattern:16; +   unsigned line_last_pixel:1;     unsigned bypass_clipping:1;     unsigned origin_lower_left:1;  /**< Is (0,0) the lower-left corner? */ @@ -154,7 +155,7 @@ struct pipe_clip_state  struct pipe_constant_buffer  {     struct pipe_buffer *buffer; -   unsigned size;    /** in bytes */ +   unsigned size;    /** in bytes (XXX: redundant!) */  }; @@ -248,6 +249,7 @@ struct pipe_sampler_state     unsigned compare_mode:1;      /**< PIPE_TEX_COMPARE_x */     unsigned compare_func:3;      /**< PIPE_FUNC_x */     unsigned normalized_coords:1; /**< Are coords normalized to [0,1]? */ +   unsigned prefilter:4;         /**< Wierd sampling state exposed by some api's */     float shadow_ambient;         /**< shadow test fail color/intensity */     float lod_bias;               /**< LOD/lambda bias */     float min_lod, max_lod;       /**< LOD clamp range, after bias */ | 
