diff options
author | Rob Clark <[email protected]> | 2016-05-14 13:38:13 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2016-05-25 16:31:15 -0400 |
commit | 231dcb19f928858ca4143e8b91e4bdc4f220ac87 (patch) | |
tree | 8070d7a51530087c90d0c665fe9843d65bc5171e /src/gallium/drivers/freedreno/Makefile.am | |
parent | 0f982bb67d64673f73096f7c536a5e29756c5c6f (diff) |
freedreno/ir3: cmdline compiler for glsl
Use glsl/libstandalone.la to add support for taking glsl src files (in
addition to .tgsi) as input. Then glsl->nir and feed the result into
the ir3 backend as normal.
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/Makefile.am')
-rw-r--r-- | src/gallium/drivers/freedreno/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/Makefile.am b/src/gallium/drivers/freedreno/Makefile.am index 9c0ccdf1eca..1af8dec54b3 100644 --- a/src/gallium/drivers/freedreno/Makefile.am +++ b/src/gallium/drivers/freedreno/Makefile.am @@ -37,6 +37,8 @@ ir3_compiler_LDADD = \ libfreedreno.la \ $(top_builddir)/src/gallium/auxiliary/libgallium.la \ $(top_builddir)/src/compiler/nir/libnir.la \ + $(top_builddir)/src/compiler/glsl/libstandalone.la \ $(top_builddir)/src/util/libmesautil.la \ + $(top_builddir)/src/mesa/libmesagallium.la \ $(GALLIUM_COMMON_LIB_DEPS) \ $(FREEDRENO_LIBS) |