add point_sprite flag to rasterizer state
This commit is contained in:
@@ -85,6 +85,7 @@ struct pipe_rasterizer_state
|
||||
unsigned poly_smooth:1;
|
||||
unsigned poly_stipple_enable:1;
|
||||
unsigned point_smooth:1;
|
||||
unsigned point_sprite:1;
|
||||
unsigned multisample:1; /* XXX maybe more ms state in future */
|
||||
unsigned line_smooth:1;
|
||||
unsigned line_stipple_enable:1;
|
||||
|
@@ -188,6 +188,7 @@ static void update_raster_state( struct st_context *st )
|
||||
*/
|
||||
raster.point_size = ctx->Point.Size;
|
||||
raster.point_smooth = ctx->Point.SmoothFlag;
|
||||
raster.point_sprite = ctx->Point.PointSprite;
|
||||
|
||||
/* _NEW_LINE
|
||||
*/
|
||||
|
Reference in New Issue
Block a user