1 /*-------------------------------------------------------------------------
2 * drawElements Quality Program OpenGL ES Utilities
3 * ------------------------------------------------
5 * Copyright 2014 The Android Open Source Project
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
21 * \brief OpenGL ES rendering context.
22 *//*--------------------------------------------------------------------*/
24 #include "gluRenderContext.hpp"
25 #include "gluDefs.hpp"
26 #include "gluRenderConfig.hpp"
27 #include "gluES3PlusWrapperContext.hpp"
28 #include "gluFboRenderContext.hpp"
29 #include "gluPlatform.hpp"
30 #include "gluStrUtil.hpp"
31 #include "glwInitFunctions.hpp"
32 #include "glwEnums.hpp"
33 #include "tcuPlatform.hpp"
34 #include "tcuCommandLine.hpp"
35 #include "deStringUtil.hpp"
36 #include "deSTLUtil.hpp"
41 inline bool versionGreaterOrEqual (ApiType a, ApiType b)
43 return a.getMajorVersion() > b.getMajorVersion() ||
44 (a.getMajorVersion() == b.getMajorVersion() && a.getMinorVersion() >= b.getMinorVersion());
47 bool contextSupports (ContextType ctxType, ApiType requiredApiType)
49 // \todo [2014-10-06 pyry] Check exact forward-compatible restrictions.
50 const bool forwardCompatible = (ctxType.getFlags() & CONTEXT_FORWARD_COMPATIBLE) != 0;
52 if (isContextTypeES(ctxType))
54 DE_ASSERT(!forwardCompatible);
55 return requiredApiType.getProfile() == PROFILE_ES &&
56 versionGreaterOrEqual(ctxType.getAPI(), requiredApiType);
58 else if (isContextTypeGLCore(ctxType))
60 if (forwardCompatible)
61 return ctxType.getAPI() == requiredApiType;
63 return requiredApiType.getProfile() == PROFILE_CORE &&
64 versionGreaterOrEqual(ctxType.getAPI(), requiredApiType);
66 else if (isContextTypeGLCompatibility(ctxType))
68 DE_ASSERT(!forwardCompatible);
69 return (requiredApiType.getProfile() == PROFILE_CORE || requiredApiType.getProfile() == PROFILE_COMPATIBILITY) &&
70 versionGreaterOrEqual(ctxType.getAPI(), requiredApiType);
79 static ContextFlags parseContextFlags (const std::string& flagsStr)
81 const std::vector<std::string> flagNames = de::splitString(flagsStr, ',');
82 ContextFlags flags = ContextFlags(0);
89 { "debug", CONTEXT_DEBUG },
90 { "robust", CONTEXT_ROBUST }
93 for (std::vector<std::string>::const_iterator flagIter = flagNames.begin(); flagIter != flagNames.end(); ++flagIter)
96 for (ndx = 0; ndx < DE_LENGTH_OF_ARRAY(s_flagMap); ndx++)
98 if (*flagIter == s_flagMap[ndx].name)
100 flags = flags | s_flagMap[ndx].flag;
105 if (ndx == DE_LENGTH_OF_ARRAY(s_flagMap))
107 tcu::print("ERROR: Unrecognized GL context flag '%s'\n", flagIter->c_str());
108 tcu::print("Supported GL context flags:\n");
110 for (ndx = 0; ndx < DE_LENGTH_OF_ARRAY(s_flagMap); ndx++)
111 tcu::print(" %s\n", s_flagMap[ndx].name);
113 throw tcu::NotSupportedError((std::string("Unknown GL context flag '") + *flagIter + "'").c_str(), DE_NULL, __FILE__, __LINE__);
120 RenderContext* createDefaultRenderContext (tcu::Platform& platform, const tcu::CommandLine& cmdLine, ApiType apiType)
122 const ContextFactoryRegistry& registry = platform.getGLPlatform().getContextFactoryRegistry();
124 const char* factoryName = cmdLine.getGLContextType();
125 const ContextFactory* factory = DE_NULL;
126 ContextFlags ctxFlags = ContextFlags(0);
128 if (registry.empty())
129 throw tcu::NotSupportedError("OpenGL is not supported", DE_NULL, __FILE__, __LINE__);
131 if (cmdLine.getGLContextFlags())
132 ctxFlags = parseContextFlags(cmdLine.getGLContextFlags());
134 config.type = glu::ContextType(apiType, ctxFlags);
135 parseRenderConfig(&config, cmdLine);
139 factory = registry.getFactoryByName(factoryName);
143 tcu::print("ERROR: Unknown or unsupported GL context type '%s'\n", factoryName);
144 tcu::print("Supported GL context types:\n");
146 for (int factoryNdx = 0; factoryNdx < (int)registry.getFactoryCount(); factoryNdx++)
148 const ContextFactory* curFactory = registry.getFactoryByIndex(factoryNdx);
149 tcu::print(" %s: %s\n", curFactory->getName(), curFactory->getDescription());
152 throw tcu::NotSupportedError((std::string("Unknown GL context type '") + factoryName + "'").c_str(), DE_NULL, __FILE__, __LINE__);
156 factory = registry.getDefaultFactory();
160 if (cmdLine.getSurfaceType() == tcu::SURFACETYPE_FBO)
161 return new FboRenderContext(*factory, config, cmdLine);
163 return factory->createContext(config, cmdLine);
166 catch (const std::exception&)
168 // If ES31 context is not available, try using wrapper.
169 if (config.type.getAPI() == ApiType::es(3,1))
171 tcu::print("Warning: Unable to create native OpenGL ES 3.1 context, will use wrapper context.\n");
172 return new ES3PlusWrapperContext(*factory, config, cmdLine);
179 static std::vector<std::string> getExtensions (const glw::Functions& gl, ApiType apiType)
184 if (apiType.getProfile() == PROFILE_ES && apiType.getMajorVersion() == 2)
186 TCU_CHECK(gl.getString);
188 const char* extStr = (const char*)gl.getString(GL_EXTENSIONS);
189 GLU_EXPECT_NO_ERROR(gl.getError(), "glGetString(GL_EXTENSIONS)");
192 return de::splitString(extStr);
194 throw tcu::TestError("glGetString(GL_EXTENSIONS) returned null pointer", DE_NULL, __FILE__, __LINE__);
198 int numExtensions = 0;
199 vector<string> extensions;
201 TCU_CHECK(gl.getIntegerv && gl.getStringi);
203 gl.getIntegerv(GL_NUM_EXTENSIONS, &numExtensions);
204 GLU_EXPECT_NO_ERROR(gl.getError(), "glGetIntegerv(GL_NUM_EXTENSIONS)");
206 if (numExtensions > 0)
208 extensions.resize(numExtensions);
210 for (int ndx = 0; ndx < numExtensions; ndx++)
212 const char* const ext = (const char*)gl.getStringi(GL_EXTENSIONS, ndx);
213 GLU_EXPECT_NO_ERROR(gl.getError(), "glGetStringi(GL_EXTENSIONS)");
216 extensions[ndx] = ext;
218 throw tcu::TestError("glGetStringi(GL_EXTENSIONS) returned null pointer", DE_NULL, __FILE__, __LINE__);
227 bool hasExtension (const glw::Functions& gl, ApiType apiType, const std::string& extension)
229 std::vector<std::string> extensions(getExtensions(gl, apiType));
231 return de::contains(extensions.begin(), extensions.end(), extension);
234 void initCoreFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType apiType)
239 void (*initFunc) (glw::Functions* gl, const glw::FunctionLoader* loader);
242 { ApiType::es(2,0), glw::initES20 },
243 { ApiType::es(3,0), glw::initES30 },
244 { ApiType::es(3,1), glw::initES31 },
245 { ApiType::core(3,0), glw::initGL30Core },
246 { ApiType::core(3,1), glw::initGL31Core },
247 { ApiType::core(3,2), glw::initGL32Core },
248 { ApiType::core(3,3), glw::initGL33Core },
249 { ApiType::core(4,0), glw::initGL40Core },
250 { ApiType::core(4,1), glw::initGL41Core },
251 { ApiType::core(4,2), glw::initGL42Core },
252 { ApiType::core(4,3), glw::initGL43Core },
253 { ApiType::core(4,4), glw::initGL44Core },
256 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(s_initFuncs); ndx++)
258 if (s_initFuncs[ndx].apiType == apiType)
260 s_initFuncs[ndx].initFunc(dst, loader);
265 throw tcu::InternalError(std::string("Don't know how to load functions for ") + de::toString(apiType));
268 void initExtensionFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType apiType)
270 std::vector<std::string> extensions = getExtensions(*dst, apiType);
272 if (!extensions.empty())
274 std::vector<const char*> extStr(extensions.size());
276 for (size_t ndx = 0; ndx < extensions.size(); ndx++)
277 extStr[ndx] = extensions[ndx].c_str();
279 initExtensionFunctions(dst, loader, apiType, (int)extStr.size(), &extStr[0]);
283 void initExtensionFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType apiType, int numExtensions, const char* const* extensions)
285 if (apiType.getProfile() == PROFILE_ES)
286 glw::initExtensionsES(dst, loader, numExtensions, extensions);
288 glw::initExtensionsGL(dst, loader, numExtensions, extensions);
291 void initFunctions (glw::Functions* dst, const glw::FunctionLoader* loader, ApiType apiType)
293 initCoreFunctions(dst, loader, apiType);
294 initExtensionFunctions(dst, loader, apiType);