diff options
author | Brian Paul <[email protected]> | 2010-07-02 12:22:33 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-07-02 18:22:53 -0600 |
commit | 7cc58c1992ca7f8af13801ea430452e590755e32 (patch) | |
tree | 8cdc0ac5ce6b920f3a4ee691ec1f80d7198e83ad /src/mesa/program/prog_instruction.h | |
parent | ae8164a67b05cdc6d9b520b9704330537f3a6024 (diff) |
mesa: updated instruction comments
Diffstat (limited to 'src/mesa/program/prog_instruction.h')
-rw-r--r-- | src/mesa/program/prog_instruction.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mesa/program/prog_instruction.h b/src/mesa/program/prog_instruction.h index 5cdc321a316..bc980c6a7f6 100644 --- a/src/mesa/program/prog_instruction.h +++ b/src/mesa/program/prog_instruction.h @@ -139,8 +139,7 @@ /** - * Program instruction opcodes, for both vertex and fragment programs. - * \note changes to this opcode list must be reflected in t_vb_arbprogram.c + * Program instruction opcodes for vertex, fragment and geometry programs. */ typedef enum prog_opcode { /* ARB_vp ARB_fp NV_vp NV_fp GLSL */ @@ -170,9 +169,9 @@ typedef enum prog_opcode { OPCODE_DPH, /* X X 1.1 */ OPCODE_DST, /* X X X X */ OPCODE_ELSE, /* X */ - OPCODE_EMIT_VERTEX, /* X */ + OPCODE_EMIT_VERTEX,/* X */ OPCODE_END, /* X X X X opt */ - OPCODE_END_PRIMITIVE,/* X */ + OPCODE_END_PRIMITIVE,/* X */ OPCODE_ENDIF, /* opt */ OPCODE_ENDLOOP, /* opt */ OPCODE_ENDSUB, /* opt */ |