Module: Mesa Branch: master Commit: ffd9c7fd74622b3c4271ea31df9e09b4180d4a5a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ffd9c7fd74622b3c4271ea31df9e09b4180d4a5a
Author: Samuel Pitoiset <[email protected]> Date: Sat Feb 6 22:16:48 2016 +0100 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]> --- src/mesa/main/mtypes.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 432cda9..d50376b 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; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
