Home | History | Annotate | Download | only in program

Lines Matching refs:VertexProgram

61    ASSERT(ctx->Const.VertexProgram.MaxUniformComponents / 4
66 ASSERT(ctx->Const.VertexProgram.MaxTemps <= (1 << INST_INDEX_BITS));
67 ASSERT(ctx->Const.VertexProgram.MaxLocalParams <= (1 << INST_INDEX_BITS));
71 ASSERT(ctx->Const.VertexProgram.MaxUniformComponents <= 4 * MAX_UNIFORMS);
74 ASSERT(ctx->Const.VertexProgram.MaxAddressOffset <= (1 << INST_INDEX_BITS));
87 ctx->VertexProgram.Enabled = GL_FALSE;
89 ctx->VertexProgram.PointSizeEnabled =
92 ctx->VertexProgram.PointSizeEnabled = GL_FALSE;
94 ctx->VertexProgram.TwoSideEnabled = GL_FALSE;
95 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current,
97 assert(ctx->VertexProgram.Current);
99 ctx->VertexProgram.TrackMatrix[i] = GL_NONE;
100 ctx->VertexProgram.TrackMatrixTransform[i] = GL_IDENTITY_NV;
102 ctx->VertexProgram.Cache = _mesa_new_program_cache();
138 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current, NULL);
139 _mesa_delete_program_cache(ctx, ctx->VertexProgram.Cache);
171 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current,
173 assert(ctx->VertexProgram.Current);
928 c = &ctx->Const.VertexProgram;