Home | History | Annotate | Download | only in main

Lines Matching refs:Const

38    const char *env_var = "MESA_GL_VERSION_OVERRIDE";
39 const char *version;
65 const char *env_var = "MESA_GLSL_VERSION_OVERRIDE";
66 const char *version;
74 n = sscanf(version, "%u", &ctx->Const.GLSLVersion);
88 static const int max = 100;
90 const GLboolean ver_1_3 = (ctx->Extensions.ARB_texture_border_clamp &&
94 const GLboolean ver_1_4 = (ver_1_3 &&
105 const GLboolean ver_1_5 = (ver_1_4 &&
108 const GLboolean ver_2_0 = (ver_1_5 &&
124 const GLboolean ver_2_1 = (ver_2_0 &&
125 ctx->Const.GLSLVersion >= 120 &&
128 const GLboolean ver_3_0 = (ver_2_1 &&
129 ctx->Const.GLSLVersion >= 130 &&
130 ctx->Const.MaxSamples >= 4 &&
148 const GLboolean ver_3_1 = (ver_3_0 &&
149 ctx->Const.GLSLVersion >= 140 &&
157 ctx->Const.MaxVertexTextureImageUnits >= 16);
158 const GLboolean ver_3_2 = (ver_3_1 &&
159 ctx->Const.GLSLVersion >= 150 &&
169 const GLboolean ver_3_3 = (ver_3_2 &&
170 ctx->Const.GLSLVersion >= 330 &&
242 static const int max = 100;
245 const GLboolean ver_1_0 = (ctx->Extensions.ARB_texture_env_combine &&
248 const GLboolean ver_1_1 = (ver_1_0 &&
274 static const int max = 100;
277 const GLboolean ver_2_0 = (ctx->Extensions.ARB_texture_cube_map &&