Module: Mesa Branch: glsl-continue-return Commit: 3e839ebc24c9a5c80a088da2016db847a8332b4a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=3e839ebc24c9a5c80a088da2016db847a8332b4a
Author: Brian Paul <[email protected]> Date: Thu Jun 25 14:02:41 2009 -0600 glsl: added slang_variable::is_global field --- src/mesa/shader/slang/slang_compile_variable.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/mesa/shader/slang/slang_compile_variable.h b/src/mesa/shader/slang/slang_compile_variable.h index a667d91..b458559 100644 --- a/src/mesa/shader/slang/slang_compile_variable.h +++ b/src/mesa/shader/slang/slang_compile_variable.h @@ -39,6 +39,7 @@ typedef struct slang_variable_ GLuint array_len; /**< only if type == SLANG_SPEC_ARRAy */ struct slang_operation_ *initializer; /**< Optional initializer code */ GLuint size; /**< Variable's size in bytes */ + GLboolean is_global; GLboolean isTemp; /**< a named temporary (__resultTmp) */ GLboolean declared; /**< for debug */ struct slang_ir_storage_ *store; /**< Storage for this var */ _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
