summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/vc5/Makefile.sources
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2017-12-28 14:00:15 -0800
committerEric Anholt <[email protected]>2018-01-12 21:53:26 -0800
commit954a704da3052028da4129cc7757f5f224ee1ffc (patch)
treecedeb2a2cd22764b5b1cf9f54a545469f9287d52 /src/gallium/drivers/vc5/Makefile.sources
parent80c84241af9fbb1e23fe630c5d4fd6d266a74060 (diff)
broadcom/vc5: Port the RCL setup to V3D4.1.
The TLB load/store path is rebuilt in this version. There is no longer a single-byte resolved store or the 3-byte extended store. Instead, you get to always use general loads/stores (which, honestly, was tempting even in previous versions).
Diffstat (limited to 'src/gallium/drivers/vc5/Makefile.sources')
-rw-r--r--src/gallium/drivers/vc5/Makefile.sources5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/drivers/vc5/Makefile.sources b/src/gallium/drivers/vc5/Makefile.sources
index 3fb6a0d0911..f942c74ca30 100644
--- a/src/gallium/drivers/vc5/Makefile.sources
+++ b/src/gallium/drivers/vc5/Makefile.sources
@@ -14,7 +14,6 @@ C_SOURCES := \
vc5_job.c \
vc5_program.c \
vc5_query.c \
- vc5_rcl.c \
vc5_resource.c \
vc5_resource.h \
vc5_screen.c \
@@ -25,3 +24,7 @@ C_SOURCES := \
vc5_tiling.h \
vc5_uniforms.c \
$()
+
+VC5_PER_VERSION_SOURCES = \
+ vc5_rcl.c \
+ $()