summaryrefslogtreecommitdiff
path: root/src/mesa/main/mtypes.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-03-13 04:33:16 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-03-13 04:33:16 +0000
commitf9708e45ac819a0c589e14ea81e635fbbc8033f8 (patch)
tree8426c0fb0523c50dcdcd4109605812bcc2a22726 /src/mesa/main/mtypes.h
parent1d01794e6efa2a366057412f24f82504cc3c2d87 (diff)
initial work for NV_vertex_program1_1 extension
Diffstat (limited to 'src/mesa/main/mtypes.h')
-rw-r--r--src/mesa/main/mtypes.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 626602fa90..efa26afe8b 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -1,4 +1,4 @@
-/* $Id: mtypes.h,v 1.65 2002/02/15 16:37:36 brianp Exp $ */
+/* $Id: mtypes.h,v 1.66 2002/03/13 04:33:16 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -1212,6 +1212,10 @@ enum vp_opcode
SGE,
MAD,
ARL,
+ DPH,
+ RCC,
+ SUB,
+ ABS,
END
};
@@ -1251,6 +1255,7 @@ struct vp_program
GLenum Target; /* GL_VERTEX_PROGRAM_NV or GL_VERTEX_STATE_PROGRAM_NV */
GLint ErrorPos; /* Position in string where error was detected */
GLint RefCount; /* Since programs can be shared among contexts */
+ GLboolean IsPositionInvariant; /* GL_NV_vertex_program1_1 */
GLboolean Resident;
GLuint InputsRead; /* Bitmask of which input regs are read */
GLuint OutputsWritten; /* Bitmask of which output regs are written to */
@@ -1424,6 +1429,7 @@ struct gl_extensions {
GLboolean NV_blend_square;
GLboolean NV_texgen_reflection;
GLboolean NV_vertex_program;
+ GLboolean NV_vertex_program1_1;
GLboolean SGI_color_matrix;
GLboolean SGI_color_table;
GLboolean SGIS_generate_mipmap;