diff options
author | Eric Anholt <[email protected]> | 2014-08-13 13:41:22 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2014-09-04 17:00:54 -0700 |
commit | 4bca922878a4d433077d21d4918b1db71b3a15f7 (patch) | |
tree | ebbab6a23eed9f16c98645c8061813d962bd1eae /src/gallium/drivers/vc4/vc4_opt_dead_code.c | |
parent | 23e20f4687269f795e912a05bf12baaa94d0dd5a (diff) |
vc4: Merge qcompile and tgsi_to_qir
The split between these two didn't make much sense. I'm going to want the
chance to look at uniform contents in optimization passes, and the QPU
emit I think is going to end up rewriting the uniforms stream.
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_opt_dead_code.c')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_opt_dead_code.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/vc4/vc4_opt_dead_code.c b/src/gallium/drivers/vc4/vc4_opt_dead_code.c index 4ceaf6ba14a..231d91d5976 100644 --- a/src/gallium/drivers/vc4/vc4_opt_dead_code.c +++ b/src/gallium/drivers/vc4/vc4_opt_dead_code.c @@ -34,7 +34,7 @@ #include "vc4_qir.h" bool -qir_opt_dead_code(struct qcompile *c) +qir_opt_dead_code(struct vc4_compile *c) { bool progress = false; bool debug = false; |