summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/tgsi/tgsi_exec.h
diff options
context:
space:
mode:
authorMarek Olšák <marek.olsak@amd.com>2015-06-25 00:56:32 +0200
committerMarek Olšák <marek.olsak@amd.com>2015-06-25 09:00:23 +0200
commit77a78c65f80323059d892c501ca551ccf324b17d (patch)
tree103cc6ae63fae5b02b80418f7d6a3ed9576c8581 /src/gallium/auxiliary/tgsi/tgsi_exec.h
parentd1663ccb4c664b0f544ed5d6f0761f3ae2435199 (diff)
downloadexternal_mesa3d-77a78c65f80323059d892c501ca551ccf324b17d.zip
external_mesa3d-77a78c65f80323059d892c501ca551ccf324b17d.tar.gz
external_mesa3d-77a78c65f80323059d892c501ca551ccf324b17d.tar.bz2
softpipe,llvmpipe: fix PIPE_SHADER_CAP_MAX_INPUTS value
PIPE_MAX_SHADER_INPUTS was recently bumped to 80 because of tessellation. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=91099 Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=91101 Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Roland Scheidegger <sroland@vmware.com>
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_exec.h')
-rw-r--r--src/gallium/auxiliary/tgsi/tgsi_exec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.h b/src/gallium/auxiliary/tgsi/tgsi_exec.h
index 208640c..e8ee256 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_exec.h
+++ b/src/gallium/auxiliary/tgsi/tgsi_exec.h
@@ -213,7 +213,7 @@ struct tgsi_sampler
* input register files, this is the stride between two 1D
* arrays.
*/
-#define TGSI_EXEC_MAX_INPUT_ATTRIBS PIPE_MAX_SHADER_INPUTS
+#define TGSI_EXEC_MAX_INPUT_ATTRIBS 32
/* The maximum number of bytes per constant buffer.
*/