diff options
author | Kenneth Graunke <[email protected]> | 2012-11-14 14:24:31 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2012-11-15 11:14:47 -0800 |
commit | b02492fd33cab35515ea3daed7d03475f941ecd2 (patch) | |
tree | 06fb98ec97b6b6bd5ec7d2daf62e86caec5dc551 /src/mesa/drivers/dri/i965/brw_context.h | |
parent | a405717b885a4e211dc28c462d174ed8e600fcf9 (diff) |
i965: Remove duplicate brw_opcodes table in favor of opcode_descs.
brw_optimize.c's brw_opcodes table was a copy of brw_disasm.c's
opcode_descs table, but with an additional field: is_arith. Now that
I've deleted that, the two are identical. Keep the one in brw_disasm.c.
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_context.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index e9c80035725..4863c40c8c1 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -1076,13 +1076,6 @@ struct brw_context int basevertex; }; -struct brw_instruction_info { - char *name; - int nsrc; - int ndst; -}; -extern const struct brw_instruction_info brw_opcodes[128]; - /*====================================================================== * brw_vtbl.c */ |