diff options
author | Eric Anholt <[email protected]> | 2008-01-09 13:40:40 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2008-01-09 14:41:42 -0800 |
commit | 5f86ae057a645c03dc1e0c51c2fb1b2628a50e0a (patch) | |
tree | af4251b4feece3ed611c4606852708de1c688392 /src/mesa/drivers/dri/i915/intel_ioctl.c | |
parent | d9edd8e90588417e3d549f25132dab2f21445792 (diff) |
[intel] Rename lost_hardware vtbl entry to new_batch.
Both drivers have ended up relying on lost_hardware being called after each
batch buffer, so update the name. This removes one of the calls on 965 whic
h was outside of the batchbuffer handling code and just duplicating what had
already happened through batchbuffer handling.
Diffstat (limited to 'src/mesa/drivers/dri/i915/intel_ioctl.c')
-rw-r--r-- | src/mesa/drivers/dri/i915/intel_ioctl.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/mesa/drivers/dri/i915/intel_ioctl.c b/src/mesa/drivers/dri/i915/intel_ioctl.c index 3cd8344b48d..187a6e901b1 100644 --- a/src/mesa/drivers/dri/i915/intel_ioctl.c +++ b/src/mesa/drivers/dri/i915/intel_ioctl.c @@ -124,11 +124,6 @@ intel_batch_ioctl(struct intel_context *intel, UNLOCK_HARDWARE(intel); exit(1); } - - /* FIXME: use hardware contexts to avoid 'losing' hardware after - * each buffer flush. - */ - intel->vtbl.lost_hardware(intel); } void @@ -176,10 +171,4 @@ intel_exec_ioctl(struct intel_context *intel, exit(1); } *fence = fo; - - /* FIXME: use hardware contexts to avoid 'losing' hardware after - * each buffer flush. - */ - intel->vtbl.lost_hardware(intel); - } |