diff options
author | Paul Berry <stereotype441@gmail.com> | 2013-02-23 07:22:01 -0800 |
---|---|---|
committer | Paul Berry <stereotype441@gmail.com> | 2013-03-15 09:24:54 -0700 |
commit | 36b252e94724b2512ea941eff2b3a3abeb80be79 (patch) | |
tree | 3f904073b430eed86b128b73e6142fbc4ad458b2 /src/glsl/lower_packed_varyings.cpp | |
parent | 9e729a79b0d5c7f2bf42262d57f6e0994c625dbe (diff) | |
download | external_mesa3d-36b252e94724b2512ea941eff2b3a3abeb80be79.zip external_mesa3d-36b252e94724b2512ea941eff2b3a3abeb80be79.tar.gz external_mesa3d-36b252e94724b2512ea941eff2b3a3abeb80be79.tar.bz2 |
Replace gl_vert_result enum with gl_varying_slot.
This patch makes the following search-and-replace changes:
gl_vert_result -> gl_varying_slot
VERT_RESULT_* -> VARYING_SLOT_*
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
Tested-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/glsl/lower_packed_varyings.cpp')
-rw-r--r-- | src/glsl/lower_packed_varyings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/lower_packed_varyings.cpp b/src/glsl/lower_packed_varyings.cpp index 8a40f5e..b4cc5cd 100644 --- a/src/glsl/lower_packed_varyings.cpp +++ b/src/glsl/lower_packed_varyings.cpp @@ -117,7 +117,7 @@ private: /** * Location representing the first generic varying slot for this shader - * stage (e.g. VERT_RESULT_VAR0 if we are packing vertex shader outputs). + * stage (e.g. VARYING_SLOT_VAR0 if we are packing vertex shader outputs). * Varyings whose location is less than this value are assumed to * correspond to special fixed function hardware, so they are not lowered. */ |