intel: Remove the unrelaxed relocation assertion
authorChris Wilson <chris@chris-wilson.co.uk>
Wed, 30 Mar 2011 14:10:50 +0000 (15:10 +0100)
committerChris Wilson <chris@chris-wilson.co.uk>
Wed, 30 Mar 2011 14:13:05 +0000 (15:13 +0100)
Now that we purposefully generate delta that point outside of the target
buffer, the assertion has outlived its usefulness.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
src/mesa/drivers/dri/intel/intel_batchbuffer.c

index 42b4f92..53d6e7c 100644 (file)
@@ -176,8 +176,6 @@ intel_batchbuffer_emit_reloc(struct intel_context *intel,
 {
    int ret;
 
-   assert(delta < buffer->size);
-
    ret = drm_intel_bo_emit_reloc(intel->batch.bo, 4*intel->batch.used,
                                 buffer, delta,
                                 read_domains, write_domain);
@@ -203,8 +201,6 @@ intel_batchbuffer_emit_reloc_fenced(struct intel_context *intel,
 {
    int ret;
 
-   assert(delta < buffer->size);
-
    ret = drm_intel_bo_emit_reloc_fence(intel->batch.bo, 4*intel->batch.used,
                                       buffer, delta,
                                       read_domains, write_domain);