diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2008-04-02 10:43:37 +0100 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2008-04-02 10:44:04 +0100 |
commit | bc739440c29c551fcc44e9e12d0d9c170d8d24fb (patch) | |
tree | d6498a25bfcec072d593a3e4a3ccecf99d19ac98 /src/gallium/include/pipe | |
parent | 7f40115a52ce8f9b5883bd9241707b9e603db0e3 (diff) |
gallium: add temporary facility for rasterization-time clamping of point sizes
Diffstat (limited to 'src/gallium/include/pipe')
-rw-r--r-- | src/gallium/include/pipe/p_state.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index a73028814e..e407e3bc72 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -118,6 +118,8 @@ struct pipe_rasterizer_state float line_width; float point_size; /**< used when no per-vertex size */ + float point_size_min; /* XXX - temporary, will go away */ + float point_size_max; /* XXX - temporary, will go away */ float offset_units; float offset_scale; ubyte sprite_coord_mode[PIPE_MAX_SHADER_OUTPUTS]; /**< PIPE_SPRITE_COORD_ */ |