diff options
author | Eric Anholt <[email protected]> | 2014-09-16 15:58:32 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2014-09-17 14:21:24 -0700 |
commit | 5e90ed79f670cc1c5c12c8b733d4591af0acb5ab (patch) | |
tree | 125bb68594ede6c772cb47a9c3d87f8af2f08414 /src/gallium/drivers/vc4/Makefile.sources | |
parent | b0256fb75f40a4e428366fcc69ebee47970fd01d (diff) |
vc4: Add support for reordering the uniform stream after optimization.
This allows for introducing dead code eliminating of uniforms, copy
propagation of uniforms, and instruction rescheduling between instructions
that both read uniforms.
Diffstat (limited to 'src/gallium/drivers/vc4/Makefile.sources')
-rw-r--r-- | src/gallium/drivers/vc4/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/vc4/Makefile.sources b/src/gallium/drivers/vc4/Makefile.sources index bcb4209d0d0..71a28a5da20 100644 --- a/src/gallium/drivers/vc4/Makefile.sources +++ b/src/gallium/drivers/vc4/Makefile.sources @@ -24,6 +24,7 @@ C_SOURCES := \ vc4_qpu.h \ vc4_qpu_validate.c \ vc4_register_allocate.c \ + vc4_reorder_uniforms.c \ vc4_resource.c \ vc4_resource.h \ vc4_screen.c \ |