diff options
author | Eric Anholt <anholt@FreeBSD.org> | 2006-07-19 13:34:06 -0400 |
---|---|---|
committer | Eric Anholt <anholt@FreeBSD.org> | 2006-07-19 13:34:06 -0400 |
commit | 449e4be503c8b938d5bd46ee810244f8bcf54ceb (patch) | |
tree | c9b8d82c08a085030093d77781564e39ae454314 /src/i915_3d.c | |
parent | f1b62d890ca22e12d61f7ef67bc4e35d68cde019 (diff) |
Correct the DWORD count of several 3D instructions.
Diffstat (limited to 'src/i915_3d.c')
-rw-r--r-- | src/i915_3d.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/i915_3d.c b/src/i915_3d.c index d8edb181..942dbd17 100644 --- a/src/i915_3d.c +++ b/src/i915_3d.c @@ -77,9 +77,7 @@ void I915EmitInvarientState( ScrnInfoPtr pScrn ) /* Need to initialize this to zero. */ - OUT_RING(_3DSTATE_LOAD_STATE_IMMEDIATE_1 | - I1_LOAD_S(3) | - (1)); + OUT_RING(_3DSTATE_LOAD_STATE_IMMEDIATE_1 | I1_LOAD_S(3) | 0); OUT_RING(0); /* XXX: Use this */ |