summaryrefslogtreecommitdiffstats
path: root/src/mesa/pipe/draw/draw_validate.c
diff options
context:
space:
mode:
authorBrian <[email protected]>2007-10-22 11:59:26 -0600
committerBrian <[email protected]>2007-10-22 11:59:26 -0600
commit22e5c4f0f09cff64039b171c5cee6def07395e1f (patch)
treefc1812c0655ab977729b45c2851e4af2b62d3191 /src/mesa/pipe/draw/draw_validate.c
parentcd4d732773e06e462e78b8f5bc9f3f1552a198ac (diff)
implement point sprite mode
Diffstat (limited to 'src/mesa/pipe/draw/draw_validate.c')
-rw-r--r--src/mesa/pipe/draw/draw_validate.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/pipe/draw/draw_validate.c b/src/mesa/pipe/draw/draw_validate.c
index 5ec581d8b33..fdeb1be8ca7 100644
--- a/src/mesa/pipe/draw/draw_validate.c
+++ b/src/mesa/pipe/draw/draw_validate.c
@@ -52,7 +52,8 @@ static void validate_begin( struct draw_stage *stage )
*/
if (draw->rasterizer->line_width != 1.0 ||
- draw->rasterizer->point_size != 1.0) {
+ draw->rasterizer->point_size != 1.0 ||
+ draw->rasterizer->point_sprite) {
draw->pipeline.wide->next = next;
next = draw->pipeline.wide;
}