diff options
author | Boris Brezillon <[email protected]> | 2019-09-14 09:58:55 +0200 |
---|---|---|
committer | Boris Brezillon <[email protected]> | 2019-09-18 10:29:13 +0200 |
commit | 154cb725d4a14d3d0360ee240665dd87281043cd (patch) | |
tree | f07eca1442c60bb88a64fdde77c5f468c395c23b /src/gallium/drivers/panfrost/pan_screen.c | |
parent | 34efaafc93ca5c28c96396333eeba0f492ce6b94 (diff) |
panfrost: Move the BO API to its own header
Right now, the BO API is spread over pan_{allocate,resource,screen}.h.
Let's move all BO related definitions to a separate header file.
Signed-off-by: Boris Brezillon <[email protected]>
Reviewed-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/gallium/drivers/panfrost/pan_screen.c')
-rw-r--r-- | src/gallium/drivers/panfrost/pan_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/panfrost/pan_screen.c b/src/gallium/drivers/panfrost/pan_screen.c index 54ef2efd3b1..dae8b941f1e 100644 --- a/src/gallium/drivers/panfrost/pan_screen.c +++ b/src/gallium/drivers/panfrost/pan_screen.c @@ -43,6 +43,7 @@ #include "drm-uapi/drm_fourcc.h" #include "drm-uapi/panfrost_drm.h" +#include "pan_bo.h" #include "pan_screen.h" #include "pan_resource.h" #include "pan_public.h" |