diff options
author | Paul Berry <[email protected]> | 2013-02-23 07:49:04 -0800 |
---|---|---|
committer | Paul Berry <[email protected]> | 2013-03-15 09:25:36 -0700 |
commit | a6d807c86f9972335048ad21c33277385eec08e8 (patch) | |
tree | 08d8048c31bb7d2db62220dab1ff513983bc5f6a /src/mesa/main/context.c | |
parent | d453225efcfe9d8854e5dd58e4feb7cd753248b9 (diff) |
Replace gl_geom_result enum with gl_varying_slot.
This patch makes the following search-and-replace changes:
gl_geom_result -> gl_varying_slot
GEOM_RESULT_* -> VARYING_SLOT_*
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Tested-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index a0d34dc9c69..40950ccc63a 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -349,7 +349,6 @@ dummy_enum_func(void) gl_texture_index ti = TEXTURE_2D_ARRAY_INDEX; gl_vert_attrib va = VERT_ATTRIB_POS; gl_varying_slot vs = VARYING_SLOT_POS; - gl_geom_result gr = GEOM_RESULT_POS; (void) bi; (void) fi; @@ -358,7 +357,6 @@ dummy_enum_func(void) (void) ti; (void) va; (void) vs; - (void) gr; } |