mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 00:38:48 +02:00
iris: disable execbuf for now
This commit is contained in:
parent
86e0c08b14
commit
455e2d6dce
1 changed files with 5 additions and 0 deletions
|
|
@ -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…
Add table
Reference in a new issue