diff options
author | Christoph Bumiller <[email protected]> | 2011-01-13 19:36:25 +0100 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2011-01-13 19:36:25 +0100 |
commit | 370ae0bd614fcbf9c4c0424fb5c41f2cfbc17b3e (patch) | |
tree | b98197b1c06da3c49d418c884d5cf9d8463e37fb /src/gallium/drivers/nvc0/nvc0_state.c | |
parent | abbb1c8f084c6739bc9d6f559caf26f3f71b2fab (diff) |
nvc0: identify POINT_RASTER_RULES, add POINT_SMOOTH state
Point smoothing requires rasterization rules to be set to OGL.
Sorry for the extra noise caused by the header update.
Diffstat (limited to 'src/gallium/drivers/nvc0/nvc0_state.c')
-rw-r--r-- | src/gallium/drivers/nvc0/nvc0_state.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nvc0/nvc0_state.c b/src/gallium/drivers/nvc0/nvc0_state.c index 5a9b1c28509..c08f3693f5e 100644 --- a/src/gallium/drivers/nvc0/nvc0_state.c +++ b/src/gallium/drivers/nvc0/nvc0_state.c @@ -207,6 +207,7 @@ nvc0_rasterizer_state_create(struct pipe_context *pipe, SB_DATA (so, fui(cso->point_size)); } SB_IMMED_3D(so, POINT_SPRITE_ENABLE, cso->point_quad_rasterization); + SB_IMMED_3D(so, POINT_SMOOTH_ENABLE, cso->point_smooth); SB_BEGIN_3D(so, POLYGON_MODE_FRONT, 1); SB_DATA (so, nvgl_polygon_mode(cso->fill_front)); |