aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorSamuel Pitoiset <[email protected]>2016-02-06 22:16:48 +0100
committerSamuel Pitoiset <[email protected]>2016-02-13 15:51:17 +0100
commitffd9c7fd74622b3c4271ea31df9e09b4180d4a5a (patch)
tree6051287b5468bfae2f7c3a70e45d46841fb88a0f /src/mesa
parenta9eb1327be6932aae972532dbd87cd2fc50e846a (diff)
mesa: add PROGRAM_MEMORY
This will be used for shared, global and local memory areas. Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Ilia Mirkin <[email protected]> Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/main/mtypes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 432cda9caee..d50376b229d 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -1872,6 +1872,7 @@ typedef enum
PROGRAM_UNDEFINED, /**< Invalid/TBD value */
PROGRAM_IMMEDIATE, /**< Immediate value, used by TGSI */
PROGRAM_BUFFER, /**< for shader buffers, compile-time only */
+ PROGRAM_MEMORY, /**< for shared, global and local memory */
PROGRAM_FILE_MAX
} gl_register_file;