1 /*-------------------------------------------------------------------------
2 * drawElements Quality Program EGL Module
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 Simple Context construction test.
22 *//*--------------------------------------------------------------------*/
24 #include "teglCreateContextTests.hpp"
25 #include "teglSimpleConfigCase.hpp"
26 #include "egluStrUtil.hpp"
27 #include "egluUtil.hpp"
28 #include "eglwLibrary.hpp"
29 #include "eglwEnums.hpp"
30 #include "tcuTestLog.hpp"
41 class CreateContextCase : public SimpleConfigCase
44 CreateContextCase (EglTestContext& eglTestCtx, const char* name, const char* description, const eglu::FilterList& filters);
45 ~CreateContextCase (void);
47 void executeForConfig (EGLDisplay display, EGLConfig config);
50 CreateContextCase::CreateContextCase (EglTestContext& eglTestCtx, const char* name, const char* description, const eglu::FilterList& filters)
51 : SimpleConfigCase(eglTestCtx, name, description, filters)
55 CreateContextCase::~CreateContextCase (void)
59 void CreateContextCase::executeForConfig (EGLDisplay display, EGLConfig config)
61 const Library& egl = m_eglTestCtx.getLibrary();
62 TestLog& log = m_testCtx.getLog();
63 EGLint id = eglu::getConfigAttribInt(egl, display, config, EGL_CONFIG_ID);
64 EGLint apiBits = eglu::getConfigAttribInt(egl, display, config, EGL_RENDERABLE_TYPE);
66 static const EGLint es1Attrs[] = { EGL_CONTEXT_CLIENT_VERSION, 1, EGL_NONE };
67 static const EGLint es2Attrs[] = { EGL_CONTEXT_CLIENT_VERSION, 2, EGL_NONE };
68 static const EGLint es3Attrs[] = { EGL_CONTEXT_MAJOR_VERSION_KHR, 3, EGL_NONE };
75 const EGLint* ctxAttrs;
78 { "OpenGL", EGL_OPENGL_API, EGL_OPENGL_BIT, DE_NULL },
79 { "OpenGL ES 1", EGL_OPENGL_ES_API, EGL_OPENGL_ES_BIT, es1Attrs },
80 { "OpenGL ES 2", EGL_OPENGL_ES_API, EGL_OPENGL_ES2_BIT, es2Attrs },
81 { "OpenGL ES 3", EGL_OPENGL_ES_API, EGL_OPENGL_ES3_BIT_KHR, es3Attrs },
82 { "OpenVG", EGL_OPENVG_API, EGL_OPENVG_BIT, DE_NULL }
85 for (int apiNdx = 0; apiNdx < (int)DE_LENGTH_OF_ARRAY(apis); apiNdx++)
87 if ((apiBits & apis[apiNdx].apiBit) == 0)
88 continue; // Not supported API
90 log << TestLog::Message << "Creating " << apis[apiNdx].name << " context with config ID " << id << TestLog::EndMessage;
91 EGLU_CHECK_MSG(egl, "init");
93 EGLU_CHECK_CALL(egl, bindAPI(apis[apiNdx].api));
95 EGLContext context = egl.createContext(display, config, EGL_NO_CONTEXT, apis[apiNdx].ctxAttrs);
96 EGLenum err = egl.getError();
98 if (context == EGL_NO_CONTEXT || err != EGL_SUCCESS)
100 log << TestLog::Message << " Fail, context: " << tcu::toHex(context) << ", error: " << eglu::getErrorName(err) << TestLog::EndMessage;
101 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Failed to create context");
106 EGLU_CHECK_CALL(egl, destroyContext(display, context));
107 log << TestLog::Message << " Pass" << TestLog::EndMessage;
113 CreateContextTests::CreateContextTests (EglTestContext& eglTestCtx)
114 : TestCaseGroup(eglTestCtx, "create_context", "Basic eglCreateContext() tests")
118 CreateContextTests::~CreateContextTests (void)
122 void CreateContextTests::init (void)
124 vector<NamedFilterList> filterLists;
125 getDefaultFilterLists(filterLists, eglu::FilterList());
127 for (vector<NamedFilterList>::iterator i = filterLists.begin(); i != filterLists.end(); i++)
128 addChild(new CreateContextCase(m_eglTestCtx, i->getName(), i->getDescription(), *i));