summaryrefslogtreecommitdiff
path: root/src/gallium/drivers
diff options
context:
space:
mode:
authorBen Skeggs <skeggsb@gmail.com>2008-02-18 15:31:55 +1100
committerBen Skeggs <skeggsb@gmail.com>2008-02-18 15:32:42 +1100
commitf911235f64d610e57da88487133d0483c7a094e7 (patch)
treefdd9c119d0205ae8411982aafaad6aaec40a4277 /src/gallium/drivers
parent037570fa5a6cf83d3aaaa6cdacc10eb0b5da45bf (diff)
nouveau: header update
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r--src/gallium/drivers/nouveau/nouveau_class.h4
-rw-r--r--src/gallium/drivers/nv40/nv40_state.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/nouveau/nouveau_class.h b/src/gallium/drivers/nouveau/nouveau_class.h
index 5998945677..c80461038b 100644
--- a/src/gallium/drivers/nouveau/nouveau_class.h
+++ b/src/gallium/drivers/nouveau/nouveau_class.h
@@ -4926,9 +4926,9 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#define NV40TCL_VIEWPORT_SCALE_Y 0x00000a34
#define NV40TCL_VIEWPORT_SCALE_Z 0x00000a38
#define NV40TCL_VIEWPORT_SCALE_W 0x00000a3c
-#define NV40TCL_POLYGON_OFFSET_FILL_ENABLE 0x00000a60
+#define NV40TCL_POLYGON_OFFSET_POINT_ENABLE 0x00000a60
#define NV40TCL_POLYGON_OFFSET_LINE_ENABLE 0x00000a64
-#define NV40TCL_POLYGON_OFFSET_POINT_ENABLE 0x00000a68
+#define NV40TCL_POLYGON_OFFSET_FILL_ENABLE 0x00000a68
#define NV40TCL_DEPTH_FUNC 0x00000a6c
#define NV40TCL_DEPTH_FUNC_NEVER 0x00000200
#define NV40TCL_DEPTH_FUNC_LESS 0x00000201
diff --git a/src/gallium/drivers/nv40/nv40_state.c b/src/gallium/drivers/nv40/nv40_state.c
index fec8f946c3..d7379e9090 100644
--- a/src/gallium/drivers/nv40/nv40_state.c
+++ b/src/gallium/drivers/nv40/nv40_state.c
@@ -347,7 +347,7 @@ nv40_rasterizer_state_create(struct pipe_context *pipe,
so_method(so, curie, NV40TCL_POLYGON_STIPPLE_ENABLE, 1);
so_data (so, cso->poly_stipple_enable ? 1 : 0);
- so_method(so, curie, 0x0a60, 3);
+ so_method(so, curie, NV40TCL_POLYGON_OFFSET_POINT_ENABLE, 3);
if ((cso->offset_cw && cso->fill_cw == PIPE_POLYGON_MODE_POINT) ||
(cso->offset_ccw && cso->fill_ccw == PIPE_POLYGON_MODE_POINT))
so_data(so, 1);