Browse Source

iris: disable execbuf for now

tags/19.1-branchpoint
Kenneth Graunke 8 years ago
parent
commit
455e2d6dce
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      src/gallium/drivers/iris/iris_batch.c

+ 5
- 0
src/gallium/drivers/iris/iris_batch.c View File

@@ -524,9 +524,14 @@ submit_batch(struct iris_batch *batch, int in_fence_fd, int *out_fence_fd)
execbuf.flags |= I915_EXEC_FENCE_OUT;
}

#if 0
int ret = drm_ioctl(batch->screen->fd, cmd, &execbuf);
if (ret != 0)
ret = -errno;
#else
int ret = 0;
fprintf(stderr, "execbuf disabled for now\n");
#endif

for (int i = 0; i < batch->exec_count; i++) {
struct iris_bo *bo = batch->exec_bos[i];

Loading…
Cancel
Save