Home | History | Annotate | Download | only in glshared

Lines Matching refs:GLSLVersion

110 static const char* getVertSrc (glu::GLSLVersion glslVersion)
112 if (glslVersion == glu::GLSL_VERSION_100_ES)
114 else if (glslVersion == glu::GLSL_VERSION_300_ES)
116 else if (glslVersion == glu::GLSL_VERSION_330)
123 static const char* getFragSrc (glu::GLSLVersion glslVersion)
125 if (glslVersion == glu::GLSL_VERSION_100_ES)
127 else if (glslVersion == glu::GLSL_VERSION_300_ES)
129 else if (glslVersion == glu::GLSL_VERSION_330)
136 QuadRenderer::QuadRenderer (const glu::RenderContext& context, glu::GLSLVersion glslVersion)
142 , m_blendFuncExt (!glu::glslVersionIsES(glslVersion) && (glslVersion >= glu::GLSL_VERSION_330))
144 DE_ASSERT(glslVersion == glu::GLSL_VERSION_100_ES ||
145 glslVersion == glu::GLSL_VERSION_300_ES ||
146 glslVersion == glu::GLSL_VERSION_330);
149 const char* vertSrc = getVertSrc(glslVersion);
150 const char* fragSrc = getFragSrc(glslVersion);