diff options
author | Brian Paul <[email protected]> | 2008-07-18 19:46:19 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-07-29 17:15:27 -0600 |
commit | 74a19b0abd382574ff583eab81a374acead9254d (patch) | |
tree | 8b84819dbfb96854340a09aa13279f8080ba6a83 /src/mesa/shader/prog_print.c | |
parent | 38a62ede6c68f292615ff8eaac749e12652dbdb9 (diff) |
mesa: glsl: various writemask/swizzle improvements and clean-ups
Diffstat (limited to 'src/mesa/shader/prog_print.c')
-rw-r--r-- | src/mesa/shader/prog_print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/prog_print.c b/src/mesa/shader/prog_print.c index 2c5e03acc25..7343b761a2f 100644 --- a/src/mesa/shader/prog_print.c +++ b/src/mesa/shader/prog_print.c @@ -313,7 +313,7 @@ reg_string(enum register_file f, GLint index, gl_prog_print_mode mode, const char * _mesa_swizzle_string(GLuint swizzle, GLuint negateBase, GLboolean extended) { - static const char swz[] = "xyzw01?!"; + static const char swz[] = "xyzw01!?"; /* See SWIZZLE_x definitions */ static char s[20]; GLuint i = 0; |