From: Oliver McFadden Date: Wed, 9 May 2007 02:41:38 +0000 (+0000) Subject: r300: Removed the obsolete pfs_reg_t type from r300_fragprog.h. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8d62afdb6a1575642fbe0e4bf3e6b279f92500e2;p=mesa.git r300: Removed the obsolete pfs_reg_t type from r300_fragprog.h. --- diff --git a/src/mesa/drivers/dri/r300/r300_fragprog.h b/src/mesa/drivers/dri/r300/r300_fragprog.h index d883aee2d72..1d683acdd92 100644 --- a/src/mesa/drivers/dri/r300/r300_fragprog.h +++ b/src/mesa/drivers/dri/r300/r300_fragprog.h @@ -41,26 +41,6 @@ #include "r300_context.h" - -#if 0 -/* representation of a register for emit_arith/swizzle */ -typedef struct _pfs_reg_t { - enum { - REG_TYPE_INPUT, - REG_TYPE_OUTPUT, - REG_TYPE_TEMP, - REG_TYPE_CONST - } type:2; - GLuint index:6; - GLuint v_swz:5; - GLuint s_swz:5; - GLuint negate_v:1; - GLuint negate_s:1; - GLuint absolute:1; - GLboolean no_use:1; - GLboolean valid:1; -} pfs_reg_t; -#endif typedef struct r300_fragment_program_swizzle { GLuint length; GLuint src[4];