diff options
author | Brian Paul <[email protected]> | 2002-01-06 20:39:03 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-01-06 20:39:03 +0000 |
commit | 571a1ac6eead573777b990b31fce16987d894adb (patch) | |
tree | 2b78e180aaca1ad39c71f2397da346520678cc12 /src/mesa/main | |
parent | 363049160da54f4aafe88f99bb2140a9bfed142b (diff) |
implemented vertex program point size control
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/enable.c | 8 | ||||
-rw-r--r-- | src/mesa/main/mtypes.h | 5 |
2 files changed, 8 insertions, 5 deletions
diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c index f82897fa463..b3c804d3fc0 100644 --- a/src/mesa/main/enable.c +++ b/src/mesa/main/enable.c @@ -1,4 +1,4 @@ -/* $Id: enable.c,v 1.53 2002/01/05 21:53:20 brianp Exp $ */ +/* $Id: enable.c,v 1.54 2002/01/06 20:39:19 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -802,21 +802,21 @@ void _mesa_set_enable( GLcontext *ctx, GLenum cap, GLboolean state ) CHECK_EXTENSION(NV_vertex_program); if (ctx->VertexProgram.Enabled == state) return; - FLUSH_VERTICES(ctx, _NEW_TRANSFORM); /* XXX OK? */ + FLUSH_VERTICES(ctx, _NEW_TRANSFORM | _NEW_PROGRAM); /* XXX OK? */ ctx->VertexProgram.Enabled = state; break; case GL_VERTEX_PROGRAM_POINT_SIZE_NV: CHECK_EXTENSION(NV_vertex_program); if (ctx->VertexProgram.PointSizeEnabled == state) return; - FLUSH_VERTICES(ctx, _NEW_TRANSFORM); /* XXX OK? */ + FLUSH_VERTICES(ctx, _NEW_POINT | _NEW_PROGRAM); ctx->VertexProgram.PointSizeEnabled = state; break; case GL_VERTEX_PROGRAM_TWO_SIDE_NV: CHECK_EXTENSION(NV_vertex_program); if (ctx->VertexProgram.TwoSideEnabled == state) return; - FLUSH_VERTICES(ctx, _NEW_TRANSFORM); /* XXX OK? */ + FLUSH_VERTICES(ctx, _NEW_PROGRAM); /* XXX OK? */ ctx->VertexProgram.TwoSideEnabled = state; break; case GL_MAP1_VERTEX_ATTRIB0_4_NV: diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 6c9684ebeba..dcf9d4bcf2c 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1,4 +1,4 @@ -/* $Id: mtypes.h,v 1.59 2002/01/06 03:54:12 brianp Exp $ */ +/* $Id: mtypes.h,v 1.60 2002/01/06 20:39:19 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1225,6 +1225,8 @@ struct vp_program GLint ErrorPos; /* Position in string where error was detected */ GLint RefCount; /* Since programs can be shared among contexts */ GLboolean Resident; + GLbitfield InputsRead; /* Bitmask of which input regs are read */ + GLbitfield OutputsWritten; /* Bitmask of which output regs are written to */ }; @@ -1478,6 +1480,7 @@ struct matrix_stack #define _NEW_BUFFERS 0x1000000 /* ctx->Visual, ctx->DrawBuffer, */ #define _NEW_MULTISAMPLE 0x2000000 /* ctx->Multisample */ #define _NEW_TRACK_MATRIX 0x4000000 /* ctx->VertexProgram */ +#define _NEW_PROGRAM 0x8000000 /* ctx->VertexProgram */ #define _NEW_ALL ~0 |