diff options
author | Brian Paul <[email protected]> | 2008-08-12 10:00:36 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-08-12 10:00:36 -0600 |
commit | af3d9dba562813ffed71691bffd7faf6665c4487 (patch) | |
tree | 475b9c9cd0fec00b919205ac0b39e103752d0cc2 /src/mesa/shader | |
parent | 49c2ee9d99e25c8977c67c490af2416f85d3092b (diff) |
mesa: set point state
Diffstat (limited to 'src/mesa/shader')
-rw-r--r-- | src/mesa/shader/program.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/shader/program.c b/src/mesa/shader/program.c index 02e23aaa3a0..b03dd24d112 100644 --- a/src/mesa/shader/program.c +++ b/src/mesa/shader/program.c @@ -58,7 +58,11 @@ _mesa_init_program(GLcontext *ctx) #if FEATURE_NV_vertex_program || FEATURE_ARB_vertex_program ctx->VertexProgram.Enabled = GL_FALSE; +#if FEATURE_es2_glsl + ctx->VertexProgram.PointSizeEnabled = GL_TRUE; +#else ctx->VertexProgram.PointSizeEnabled = GL_FALSE; +#endif ctx->VertexProgram.TwoSideEnabled = GL_FALSE; _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current, ctx->Shared->DefaultVertexProgram); |