diff options
author | Francisco Jerez <[email protected]> | 2012-03-18 18:13:29 +0100 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2012-05-11 12:39:41 +0200 |
commit | 581ddbcf93ea8111e71ef43e90fa6937cf46a2cb (patch) | |
tree | 4e7550d4d26e1303df6af9d16f09ca62c0e0ed62 /src/gallium/auxiliary/tgsi | |
parent | b8e808f1ef9462af8545999df514fddbbff34345 (diff) |
gallium/tgsi: Define system values used to query the compute grid parameters.
Diffstat (limited to 'src/gallium/auxiliary/tgsi')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_strings.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_strings.c b/src/gallium/auxiliary/tgsi/tgsi_strings.c index 1d959b6e0e9..d7b74ba2b8b 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_strings.c +++ b/src/gallium/auxiliary/tgsi/tgsi_strings.c @@ -74,7 +74,11 @@ const char *tgsi_semantic_names[TGSI_SEMANTIC_COUNT] = "VERTEXID", "STENCIL", "CLIPDIST", - "CLIPVERTEX" + "CLIPVERTEX", + "GRID_SIZE", + "BLOCK_ID", + "BLOCK_SIZE", + "THREAD_ID" }; const char *tgsi_texture_names[TGSI_TEXTURE_COUNT] = |