search for: ac4f9bb

Displaying 1 result from an estimated 1 matches for "ac4f9bb".

Did you mean: a04f99b
2014 Feb 21
0
[PATCH] nouveau: add a nouveau_compiler binary to compile TGSI into shader ISA
...au/.gitignore b/src/gallium/drivers/nouveau/.gitignore new file mode 100644 index 0000000..829f951 --- /dev/null +++ b/src/gallium/drivers/nouveau/.gitignore @@ -0,0 +1 @@ +nouveau_compiler diff --git a/src/gallium/drivers/nouveau/Makefile.am b/src/gallium/drivers/nouveau/Makefile.am index 7c05223..ac4f9bb 100644 --- a/src/gallium/drivers/nouveau/Makefile.am +++ b/src/gallium/drivers/nouveau/Makefile.am @@ -39,3 +39,15 @@ libnouveau_la_SOURCES = \ $(NV50_C_SOURCES) \ $(NVC0_CODEGEN_SOURCES) \ $(NVC0_C_SOURCES) + +noinst_PROGRAMS = nouveau_compiler + +nouveau_compiler_SOURCES = \ + nouveau_compi...