Преглед изворни кода

i915g: Check relocs as well

tags/mesa_7_6_rc1
Jakob Bornecrantz пре 16 година
родитељ
комит
df9f27822e
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2
    2
      src/gallium/drivers/i915simple/i915_batch.h

+ 2
- 2
src/gallium/drivers/i915simple/i915_batch.h Прегледај датотеку

@@ -50,8 +50,8 @@ i915_batchbuffer_check( struct i915_batchbuffer *batch,
size_t dwords,
size_t relocs )
{
/** TODO JB: Check relocs */
return dwords * 4 <= batch->size - (batch->ptr - batch->map);
return dwords * 4 <= batch->size - (batch->ptr - batch->map) &&
relocs <= (batch->max_relocs - batch->relocs);
}

static INLINE size_t

Loading…
Откажи
Сачувај