Lines Matching full:functions
20 ShShaderOutput GetShaderOutputType(const FunctionsGL *functions) in GetShaderOutputType() argument
22 ASSERT(functions); in GetShaderOutputType()
24 if (functions->standard == STANDARD_GL_DESKTOP) in GetShaderOutputType()
27 if (functions->isAtLeastGL(gl::Version(4, 5))) in GetShaderOutputType()
31 else if (functions->isAtLeastGL(gl::Version(4, 4))) in GetShaderOutputType()
35 else if (functions->isAtLeastGL(gl::Version(4, 3))) in GetShaderOutputType()
39 else if (functions->isAtLeastGL(gl::Version(4, 2))) in GetShaderOutputType()
43 else if (functions->isAtLeastGL(gl::Version(4, 1))) in GetShaderOutputType()
47 else if (functions->isAtLeastGL(gl::Version(4, 0))) in GetShaderOutputType()
51 else if (functions->isAtLeastGL(gl::Version(3, 3))) in GetShaderOutputType()
55 else if (functions->isAtLeastGL(gl::Version(3, 2))) in GetShaderOutputType()
59 else if (functions->isAtLeastGL(gl::Version(3, 1))) in GetShaderOutputType()
63 else if (functions->isAtLeastGL(gl::Version(3, 0))) in GetShaderOutputType()
72 else if (functions->standard == STANDARD_GL_ES) in GetShaderOutputType()
86 CompilerGL::CompilerGL(const FunctionsGL *functions) in CompilerGL() argument
87 : mTranslatorOutputType(GetShaderOutputType(functions)) in CompilerGL()