summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorOliver McFadden <z3ro.geek@gmail.com>2007-05-09 02:41:38 +0000
committerOliver McFadden <z3ro.geek@gmail.com>2007-05-09 02:41:38 +0000
commit8d62afdb6a1575642fbe0e4bf3e6b279f92500e2 (patch)
tree767a783073c06cb921733c3e9ca89a57009ac56e /src
parent59494bafb482b30f3eef468d6f11396418a09a15 (diff)
r300: Removed the obsolete pfs_reg_t type from r300_fragprog.h.
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/r300/r300_fragprog.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_fragprog.h b/src/mesa/drivers/dri/r300/r300_fragprog.h
index d883aee2d7..1d683acdd9 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];