diff options
author | Rob Clark <[email protected]> | 2014-01-15 08:08:18 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2014-02-01 11:50:10 -0500 |
commit | 0f2df4ff90b255456cfd45f5582016744fbfd0f7 (patch) | |
tree | 8c0643444b09947e41d618041fd020eb036e4b70 /src/gallium/drivers/freedreno/Makefile.sources | |
parent | 752475619997ce1d596dd0073d0fa5785d8f2646 (diff) |
freedreno: add tgsi lowering pass
Currently lowers the following instructions:
DST, XPD, SCS, LRP, FRC, POW, LIT, EXP, LOG, DP4,
DP3, DPH, DP2
translating these into equivalent simpler TGSI instructions.
This probably should be moved to util so other drivers can use
it, but just adding under freedreno for now so that I can clear
out a lot of the lowering code in a3xx compiler before beginning
to add new compiler.
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/Makefile.sources')
-rw-r--r-- | src/gallium/drivers/freedreno/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/Makefile.sources b/src/gallium/drivers/freedreno/Makefile.sources index 092b09f8042..3dcec9dceac 100644 --- a/src/gallium/drivers/freedreno/Makefile.sources +++ b/src/gallium/drivers/freedreno/Makefile.sources @@ -1,5 +1,6 @@ C_SOURCES := \ freedreno_util.c \ + freedreno_lowering.c \ freedreno_query.c \ freedreno_fence.c \ freedreno_resource.c \ |