r200: remove left over dead code

0aaa27f291 removed the references to this array without
removing the array itself

Cc: Ian Romanick <ian.d.romanick@intel.com>
Fixes: 0aaa27f291 "mesa: Pass the translated color logic op dd_function_table::LogicOpcode"
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Elie Tournier <elie.tournier@collabora.com>
This commit is contained in:
Eric Engestrom 2018-02-09 11:38:43 +00:00
parent f4e85ba93f
commit 111d4bf1d0

View file

@ -1626,26 +1626,6 @@ static void r200RenderMode( struct gl_context *ctx, GLenum mode )
FALLBACK( rmesa, R200_FALLBACK_RENDER_MODE, (mode != GL_RENDER) );
}
static GLuint r200_rop_tab[] = {
R200_ROP_CLEAR,
R200_ROP_AND,
R200_ROP_AND_REVERSE,
R200_ROP_COPY,
R200_ROP_AND_INVERTED,
R200_ROP_NOOP,
R200_ROP_XOR,
R200_ROP_OR,
R200_ROP_NOR,
R200_ROP_EQUIV,
R200_ROP_INVERT,
R200_ROP_OR_REVERSE,
R200_ROP_COPY_INVERTED,
R200_ROP_OR_INVERTED,
R200_ROP_NAND,
R200_ROP_SET,
};
static void r200LogicOpCode(struct gl_context *ctx, enum gl_logicop_mode opcode)
{
r200ContextPtr rmesa = R200_CONTEXT(ctx);