Lines Matching refs:Enabled
148 attr->Fog = ctx->Fog.Enabled; in _mesa_PushAttrib()
150 attr->Light[i] = ctx->Light.Light[i].Enabled; in _mesa_PushAttrib()
152 attr->Lighting = ctx->Light.Enabled; in _mesa_PushAttrib()
186 attr->Stencil = ctx->Stencil.Enabled; in _mesa_PushAttrib()
188 attr->MultisampleEnabled = ctx->Multisample.Enabled; in _mesa_PushAttrib()
193 attr->Texture[i] = ctx->Texture.FixedFuncUnit[i].Enabled; in _mesa_PushAttrib()
197 attr->VertexProgram = ctx->VertexProgram.Enabled; in _mesa_PushAttrib()
202 attr->FragmentProgram = ctx->FragmentProgram.Enabled; in _mesa_PushAttrib()
375 TEST_AND_UPDATE(ctx->Fog.Enabled, enable->Fog, GL_FOG); in pop_enable_group()
376 TEST_AND_UPDATE(ctx->Light.Enabled, enable->Lighting, GL_LIGHTING); in pop_enable_group()
448 TEST_AND_UPDATE(ctx->Stencil.Enabled, enable->Stencil, GL_STENCIL_TEST); in pop_enable_group()
453 TEST_AND_UPDATE(ctx->Multisample.Enabled, enable->MultisampleEnabled, in pop_enable_group()
465 TEST_AND_UPDATE(ctx->VertexProgram.Enabled, in pop_enable_group()
476 TEST_AND_UPDATE(ctx->FragmentProgram.Enabled, in pop_enable_group()
498 const GLbitfield old_enabled = unit->Enabled; in pop_enable_group()
860 TEST_AND_UPDATE(ctx->Fog.Enabled, attr->Fog.Enabled, GL_FOG); in _mesa_PopAttrib()
881 TEST_AND_UPDATE(ctx->Light.Enabled, attr->Light.Enabled, GL_LIGHTING); in _mesa_PopAttrib()
895 TEST_AND_UPDATE(ctx->Light.Light[i].Enabled, in _mesa_PopAttrib()
896 attr->Light.Light[i].Enabled, in _mesa_PopAttrib()
1004 TEST_AND_UPDATE(ctx->Stencil.Enabled, attr->Stencil.Enabled, in _mesa_PopAttrib()
1108 TEST_AND_UPDATE(ctx->Multisample.Enabled, in _mesa_PopAttrib()
1109 attr->Multisample.Enabled, in _mesa_PopAttrib()
1210 dest->Enabled = src->Enabled; in copy_array_object()