diff options
author | Brian Paul <brianp@vmware.com> | 2010-02-15 13:35:39 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2010-02-15 13:35:39 -0700 |
commit | 424de11ea85f53700805b59204c264cc45583bb6 (patch) | |
tree | b0eeb0246f61555750fe6f96f654ca0a7618e46b | |
parent | 5f2bd39cc533c304cee81f97eb0edf2f721bf2cd (diff) |
glsl: rename some preprocessor tests
-rw-r--r-- | src/glean/tglsl1.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/glean/tglsl1.cpp b/src/glean/tglsl1.cpp index 937685e..0c0c9ce 100644 --- a/src/glean/tglsl1.cpp +++ b/src/glean/tglsl1.cpp @@ -2893,7 +2893,7 @@ static const ShaderProgram Programs[] = { // Preprocessor tests ================================================ { - "Preprocessor test (1)", + "Preprocessor test 1 (#if 0)", NO_VERTEX_SHADER, "void main() { \n" "#if 0 \n" @@ -2908,7 +2908,7 @@ static const ShaderProgram Programs[] = { }, { - "Preprocessor test (2)", + "Preprocessor test 2 (#if 1)", NO_VERTEX_SHADER, "void main() { \n" "#if 1 \n" @@ -2923,7 +2923,7 @@ static const ShaderProgram Programs[] = { }, { - "Preprocessor test (3)", + "Preprocessor test 3 (#if ==)", NO_VERTEX_SHADER, "void main() { \n" "#define SYMBOL 3 \n" @@ -2939,7 +2939,7 @@ static const ShaderProgram Programs[] = { }, { - "Preprocessor test (4)", + "Preprocessor test 4 (#if 1, #define macro)", NO_VERTEX_SHADER, "#if 1 \n" "#define FOO(x) x \n" @@ -2955,7 +2955,7 @@ static const ShaderProgram Programs[] = { }, { - "Preprocessor test (5)", + "Preprocessor test 5 (#if 1, #define macro)", NO_VERTEX_SHADER, "#define BAR(x) x \n" "#if 1 \n" @@ -2972,7 +2972,7 @@ static const ShaderProgram Programs[] = { }, { - "Preprocessor test (6)", + "Preprocessor test 6 (#if 0, #define macro)", NO_VERTEX_SHADER, "#define BAR(x) x \n" "#if 0 \n" @@ -2989,7 +2989,7 @@ static const ShaderProgram Programs[] = { }, { - "Preprocessor test (7)", + "Preprocessor test 7 (multi-line #define)", NO_VERTEX_SHADER, "#define FOO(x) \\\n" " ((x) + (x)) \n" @@ -3002,7 +3002,7 @@ static const ShaderProgram Programs[] = { }, { - "Preprocessor test (8)", + "Preprocessor test 8 (#ifdef)", NO_VERTEX_SHADER, "#define FOO \n" "void main() { \n" @@ -3018,7 +3018,7 @@ static const ShaderProgram Programs[] = { }, { - "Preprocessor test (9)", + "Preprocessor test 9 (#ifndef)", NO_VERTEX_SHADER, "#define FOO \n" "void main() { \n" @@ -3034,7 +3034,7 @@ static const ShaderProgram Programs[] = { }, { - "Preprocessor test (10)", + "Preprocessor test 10 (#if defined())", NO_VERTEX_SHADER, "#define FOO \n" "void main() { \n" |