Home | History | Annotate | Download | only in main

Lines Matching refs:Transform

152    if (ctx->Transform.MatrixMode == mode && mode != GL_TEXTURE)
227 ctx->Transform.MatrixMode = mode;
249 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
252 if (ctx->Transform.MatrixMode == GL_TEXTURE) {
259 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
289 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
292 if (ctx->Transform.MatrixMode == GL_TEXTURE) {
299 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
568 * date across changes to the __struct gl_contextRec::Transform attributes.
579 if (ctx->Transform.ClipPlanesEnabled) {
582 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) {
583 _mesa_transform_vector( ctx->Transform._ClipUserPlane[p],
584 ctx->Transform.EyeUserPlane[p],
631 TRANSFORM_POINT3( ctx->Transform.CullObjPos,
633 ctx->Transform.CullEyePos );
763 * Initialize the context transform attribute group.
767 * \todo Move this to a new file with other 'transform' routines.
774 ctx->Transform.MatrixMode = GL_MODELVIEW;
775 ctx->Transform.Normalize = GL_FALSE;
776 ctx->Transform.RescaleNormals = GL_FALSE;
777 ctx->Transform.RasterPositionUnclipped = GL_FALSE;
779 ASSIGN_4V( ctx->Transform.EyeUserPlane[i], 0.0, 0.0, 0.0, 0.0 );
781 ctx->Transform.ClipPlanesEnabled = 0;
783 ASSIGN_4V( ctx->Transform.CullObjPos, 0.0, 0.0, 1.0, 0.0 );
784 ASSIGN_4V( ctx->Transform.CullEyePos, 0.0, 0.0, 1.0, 0.0 );