diff options
author | Paul Berry <[email protected]> | 2013-02-22 11:49:44 -0800 |
---|---|---|
committer | Paul Berry <[email protected]> | 2013-03-15 09:24:44 -0700 |
commit | 9e729a79b0d5c7f2bf42262d57f6e0994c625dbe (patch) | |
tree | abfdcb31419b602c2a825333354cda512dfbcfc7 /src/mesa/program/prog_print.c | |
parent | 8a076c5f057468830ed8606af50aeaa4a231a079 (diff) |
mtypes.h: Modify gl_vert_result to refer to new gl_varying_slot enum.
This paves the way for eliminating the gl_vert_result enum entirely.
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Tested-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/program/prog_print.c')
-rw-r--r-- | src/mesa/program/prog_print.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/program/prog_print.c b/src/mesa/program/prog_print.c index 7e7e081f76b..e5592cf3668 100644 --- a/src/mesa/program/prog_print.c +++ b/src/mesa/program/prog_print.c @@ -263,6 +263,10 @@ arb_output_attrib_string(GLint index, GLenum progType) "result.(sixteen)", /* VERT_RESULT_CLIP_VERTEX */ "result.(seventeen)", /* VERT_RESULT_CLIP_DIST0 */ "result.(eighteen)", /* VERT_RESULT_CLIP_DIST1 */ + "result.(nineteen)", /* VARYING_SLOT_PRIMITIVE_ID */ + "result.(twenty)", /* VARYING_SLOT_LAYER */ + "result.(twenty-one)", /* VARYING_SLOT_FACE */ + "result.(twenty-two)", /* VARYING_SLOT_PNTC */ "result.varying[0]", "result.varying[1]", "result.varying[2]", |