summaryrefslogtreecommitdiffstats
path: root/src/mesa/program/prog_print.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2013-04-14 19:59:06 +0200
committerMarek Olšák <[email protected]>2013-04-24 03:23:24 +0200
commit9a32203e1618486e87c7baf494134e05f0e38cf3 (patch)
tree5ab8a311a5b315a7c6940a137db80a08ccf90a97 /src/mesa/program/prog_print.c
parent3140d132ef3cb6bf5194d6aa8697b9bc30ba8fcd (diff)
mesa: remove unused opcodes AND, DP2A, NOT, NRM3, NRM4, OR, PRINT, XOR
Reviewed-by: Brian Paul <[email protected]> Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/program/prog_print.c')
-rw-r--r--src/mesa/program/prog_print.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/mesa/program/prog_print.c b/src/mesa/program/prog_print.c
index c73f10df5cf..e3ab9bdf133 100644
--- a/src/mesa/program/prog_print.c
+++ b/src/mesa/program/prog_print.c
@@ -663,20 +663,6 @@ _mesa_fprint_instruction_opt(FILE *f,
}
switch (inst->Opcode) {
- case OPCODE_PRINT:
- fprintf(f, "PRINT '%s'", (char *) inst->Data);
- if (inst->SrcReg[0].File != PROGRAM_UNDEFINED) {
- fprintf(f, ", ");
- fprintf(f, "%s[%d]%s",
- _mesa_register_file_name((gl_register_file) inst->SrcReg[0].File),
- inst->SrcReg[0].Index,
- _mesa_swizzle_string(inst->SrcReg[0].Swizzle,
- inst->SrcReg[0].Negate, GL_FALSE));
- }
- if (inst->Comment)
- fprintf(f, " # %s", inst->Comment);
- fprint_comment(f, inst);
- break;
case OPCODE_SWZ:
fprintf(f, "SWZ");
if (inst->SaturateMode == SATURATE_ZERO_ONE)