diff options
author | Kenneth Graunke <[email protected]> | 2018-07-06 11:29:51 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-02-21 10:26:07 -0800 |
commit | a3f77eceb4d08fbb83c3a853f339cb77d9b46aa4 (patch) | |
tree | b5b92d433770a416251d4669040f30b8a3200bf4 /src/gallium/drivers/iris/iris_screen.h | |
parent | 5165308169ffd7e29f30531f658858e80f6d9465 (diff) |
iris: slab allocate transfers
apparently we need this for u_threaded_context
Diffstat (limited to 'src/gallium/drivers/iris/iris_screen.h')
-rw-r--r-- | src/gallium/drivers/iris/iris_screen.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/iris/iris_screen.h b/src/gallium/drivers/iris/iris_screen.h index a06d2c34391..4798f2255db 100644 --- a/src/gallium/drivers/iris/iris_screen.h +++ b/src/gallium/drivers/iris/iris_screen.h @@ -38,6 +38,9 @@ struct iris_bo; struct iris_screen { struct pipe_screen base; + + struct slab_parent_pool transfer_pool; + int fd; int pci_id; |