aboutsummaryrefslogtreecommitdiffstats
path: root/src/panfrost/Makefile.sources
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2020-03-23 19:36:46 -0400
committerMarge Bot <[email protected]>2020-03-31 01:12:26 +0000
commit0f65f00a0dc438350454ba247b453cf80271a671 (patch)
tree4031252d57a15d8c8d6bfccb6457961c059cda23 /src/panfrost/Makefile.sources
parent3283c7f4dadafee97e9af0e6613da43fad3c0019 (diff)
panfrost: Move pan_bo to root panfrost
Now that its Gallium dependencies have been resolved, we can move this all out to root. The only nontrivial change here is keeping the pandecode calls in Gallium-panfrost to avoid creating a circular dependency between encoder/decoder. This could be solved with a third drm folder but this seems less intrusive for now and Roman would probably appreciate if I went longer than 8 hours without breaking the Android build. Signed-off-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4382>
Diffstat (limited to 'src/panfrost/Makefile.sources')
-rw-r--r--src/panfrost/Makefile.sources5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/panfrost/Makefile.sources b/src/panfrost/Makefile.sources
index ad9a230567e..a92213a21ca 100644
--- a/src/panfrost/Makefile.sources
+++ b/src/panfrost/Makefile.sources
@@ -17,6 +17,8 @@ bifrost_FILES := \
encoder_FILES := \
encoder/pan_afbc.c \
encoder/pan_attributes.c \
+ encoder/pan_bo.c \
+ encoder/pan_bo.h \
encoder/pan_device.h \
encoder/pan_encoder.h \
encoder/pan_format.c \
@@ -25,7 +27,8 @@ encoder_FILES := \
encoder/pan_sampler.c \
encoder/pan_tiler.c \
encoder/pan_texture.c \
- encoder/pan_scratch.c
+ encoder/pan_scratch.c \
+ encoder/pan_util.h
midgard_FILES := \
midgard/compiler.h \