diff options
author | Eric Anholt <[email protected]> | 2014-11-12 16:35:05 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2014-11-24 14:56:22 -0800 |
commit | 868f95f1da74cf6dd7468cba1b56664aad585ccb (patch) | |
tree | e91863d8f1329873ef2581ec57a5512496ce2dce /src/mesa/program/prog_instruction.c | |
parent | 365a4a3f9a80d1b7a6d030d2921578dfc5c899c6 (diff) |
mesa: Drop unused SFL/STR opcodes.
They're part of NV_vertex_program2, which I'm pretty sure we're never
going to support.
Reviewed-by: Jose Fonseca <[email protected]>
Reviewed-by: Ian Roamnick <[email protected]>
Diffstat (limited to 'src/mesa/program/prog_instruction.c')
-rw-r--r-- | src/mesa/program/prog_instruction.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/program/prog_instruction.c b/src/mesa/program/prog_instruction.c index e2eadc36c62..abe663d5705 100644 --- a/src/mesa/program/prog_instruction.c +++ b/src/mesa/program/prog_instruction.c @@ -202,7 +202,6 @@ static const struct instruction_info InstInfo[MAX_OPCODE] = { { OPCODE_RSQ, "RSQ", 1, 1 }, { OPCODE_SCS, "SCS", 1, 1 }, { OPCODE_SEQ, "SEQ", 2, 1 }, - { OPCODE_SFL, "SFL", 0, 1 }, { OPCODE_SGE, "SGE", 2, 1 }, { OPCODE_SGT, "SGT", 2, 1 }, { OPCODE_SIN, "SIN", 1, 1 }, @@ -210,7 +209,6 @@ static const struct instruction_info InstInfo[MAX_OPCODE] = { { OPCODE_SLT, "SLT", 2, 1 }, { OPCODE_SNE, "SNE", 2, 1 }, { OPCODE_SSG, "SSG", 1, 1 }, - { OPCODE_STR, "STR", 0, 1 }, { OPCODE_SUB, "SUB", 2, 1 }, { OPCODE_SWZ, "SWZ", 1, 1 }, { OPCODE_TEX, "TEX", 1, 1 }, |