diff options
author | Ben Skeggs <[email protected]> | 2014-05-09 15:56:05 +1000 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2014-05-15 09:54:49 +1000 |
commit | d548d47edf9f05e6dbf9656abc2f8e78d02cb2f6 (patch) | |
tree | 9427f4339be135386d41b160c1e1e38b7e80eb56 /src/gallium/drivers/nouveau/Makefile.sources | |
parent | 7b9475fa652b9df6d599edbea8fa5049fdd995e1 (diff) |
nvc0: add maxwell (sm50) compiler backend
The big missing part here is proper sched data calculations, but
hopefully the chosen placeholder will be sufficient for now.
Passes piglit as well as GK107 does.
Signed-off-by: Ben Skeggs <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/Makefile.sources')
-rw-r--r-- | src/gallium/drivers/nouveau/Makefile.sources | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gallium/drivers/nouveau/Makefile.sources b/src/gallium/drivers/nouveau/Makefile.sources index cc84ec3edb6..d6eba244d79 100644 --- a/src/gallium/drivers/nouveau/Makefile.sources +++ b/src/gallium/drivers/nouveau/Makefile.sources @@ -72,10 +72,13 @@ NV50_CODEGEN_SOURCES := \ codegen/nv50_ir_util.cpp NVC0_CODEGEN_SOURCES := \ - codegen/nv50_ir_emit_gk110.cpp \ codegen/nv50_ir_emit_nvc0.cpp \ + codegen/nv50_ir_emit_gk110.cpp \ + codegen/nv50_ir_emit_gm107.cpp \ codegen/nv50_ir_lowering_nvc0.cpp \ - codegen/nv50_ir_target_nvc0.cpp + codegen/nv50_ir_lowering_gm107.cpp \ + codegen/nv50_ir_target_nvc0.cpp \ + codegen/nv50_ir_target_gm107.cpp NVC0_C_SOURCES := \ nvc0/nvc0_compute.c \ |