diff options
author | Brian <[email protected]> | 2007-08-08 09:52:35 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-08-08 09:52:35 -0600 |
commit | 40bc47f5780333e75c35a16bfec1f9670b2a646a (patch) | |
tree | b96ea0c19688a0f7c24a331ef39e09ff0658e6fb /src/mesa | |
parent | 7523f490b0166b00e24429c33f8958c3be72ccb5 (diff) |
replace draw_offset w/ 0 for now
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/pipe/i915simple/i915_state_emit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/pipe/i915simple/i915_state_emit.c b/src/mesa/pipe/i915simple/i915_state_emit.c index dd7932bc0db..ba8cbdacf37 100644 --- a/src/mesa/pipe/i915simple/i915_state_emit.c +++ b/src/mesa/pipe/i915simple/i915_state_emit.c @@ -189,7 +189,7 @@ i915_emit_hardware_state(struct i915_context *i915 ) OUT_RELOC(cbuf_region->buffer, I915_BUFFER_ACCESS_WRITE, - cbuf_region->draw_offset); + /*cbuf_region->draw_offset*/0); } /* What happens if no zbuf?? @@ -207,7 +207,7 @@ i915_emit_hardware_state(struct i915_context *i915 ) OUT_RELOC(depth_region->buffer, I915_BUFFER_ACCESS_WRITE, - depth_region->draw_offset); + /*depth_region->draw_offset*/0); } |