xref: /aosp_15_r20/external/deqp/modules/egl/teglCreateContextTests.cpp (revision 35238bce31c2a825756842865a792f8cf7f89930)
1 /*-------------------------------------------------------------------------
2  * drawElements Quality Program EGL Module
3  * ---------------------------------------
4  *
5  * Copyright 2014 The Android Open Source Project
6  *
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
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
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.
18  *
19  *//*!
20  * \file
21  * \brief Simple Context construction test.
22  *//*--------------------------------------------------------------------*/
23 
24 #include "teglCreateContextTests.hpp"
25 #include "teglSimpleConfigCase.hpp"
26 #include "egluStrUtil.hpp"
27 #include "egluUtil.hpp"
28 #include "egluUnique.hpp"
29 #include "eglwLibrary.hpp"
30 #include "eglwEnums.hpp"
31 #include "tcuTestLog.hpp"
32 #include "deSTLUtil.hpp"
33 
34 namespace deqp
35 {
36 namespace egl
37 {
38 
39 using std::vector;
40 using tcu::TestLog;
41 using namespace eglw;
42 
43 static const EGLint s_es1Attrs[] = {EGL_CONTEXT_CLIENT_VERSION, 1, EGL_NONE};
44 static const EGLint s_es2Attrs[] = {EGL_CONTEXT_CLIENT_VERSION, 2, EGL_NONE};
45 static const EGLint s_es3Attrs[] = {EGL_CONTEXT_MAJOR_VERSION_KHR, 3, EGL_NONE};
46 
47 static const struct
48 {
49     const char *name;
50     EGLenum api;
51     EGLint apiBit;
52     bool noConfigOptional;
53     const EGLint *ctxAttrs;
54 } s_apis[] = {{"OpenGL", EGL_OPENGL_API, EGL_OPENGL_BIT, false, DE_NULL},
55               {"OpenGL ES 1", EGL_OPENGL_ES_API, EGL_OPENGL_ES_BIT, true, s_es1Attrs},
56               {"OpenGL ES 2", EGL_OPENGL_ES_API, EGL_OPENGL_ES2_BIT, true, s_es2Attrs},
57               {"OpenGL ES 3", EGL_OPENGL_ES_API, EGL_OPENGL_ES3_BIT_KHR, false, s_es3Attrs},
58               {"OpenVG", EGL_OPENVG_API, EGL_OPENVG_BIT, false, DE_NULL}};
59 
60 class CreateContextCase : public SimpleConfigCase
61 {
62 public:
63     CreateContextCase(EglTestContext &eglTestCtx, const char *name, const char *description,
64                       const eglu::FilterList &filters);
65     ~CreateContextCase(void);
66 
67     void executeForConfig(EGLDisplay display, EGLConfig config);
68 };
69 
CreateContextCase(EglTestContext & eglTestCtx,const char * name,const char * description,const eglu::FilterList & filters)70 CreateContextCase::CreateContextCase(EglTestContext &eglTestCtx, const char *name, const char *description,
71                                      const eglu::FilterList &filters)
72     : SimpleConfigCase(eglTestCtx, name, description, filters)
73 {
74 }
75 
~CreateContextCase(void)76 CreateContextCase::~CreateContextCase(void)
77 {
78 }
79 
executeForConfig(EGLDisplay display,EGLConfig config)80 void CreateContextCase::executeForConfig(EGLDisplay display, EGLConfig config)
81 {
82     const Library &egl = m_eglTestCtx.getLibrary();
83     TestLog &log       = m_testCtx.getLog();
84     EGLint id          = eglu::getConfigAttribInt(egl, display, config, EGL_CONFIG_ID);
85     EGLint apiBits     = eglu::getConfigAttribInt(egl, display, config, EGL_RENDERABLE_TYPE);
86 
87     for (int apiNdx = 0; apiNdx < (int)DE_LENGTH_OF_ARRAY(s_apis); apiNdx++)
88     {
89         if ((apiBits & s_apis[apiNdx].apiBit) == 0)
90             continue; // Not supported API
91 
92         log << TestLog::Message << "Creating " << s_apis[apiNdx].name << " context with config ID " << id
93             << TestLog::EndMessage;
94         EGLU_CHECK_MSG(egl, "init");
95 
96         EGLU_CHECK_CALL(egl, bindAPI(s_apis[apiNdx].api));
97 
98         EGLContext context = egl.createContext(display, config, EGL_NO_CONTEXT, s_apis[apiNdx].ctxAttrs);
99         EGLenum err        = egl.getError();
100 
101         if (context == EGL_NO_CONTEXT || err != EGL_SUCCESS)
102         {
103             log << TestLog::Message << "  Fail, context: " << tcu::toHex(context)
104                 << ", error: " << eglu::getErrorName(err) << TestLog::EndMessage;
105             m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Failed to create context");
106         }
107         else
108         {
109             // Destroy
110             EGLU_CHECK_CALL(egl, destroyContext(display, context));
111             log << TestLog::Message << "  Pass" << TestLog::EndMessage;
112         }
113     }
114 }
115 
116 class CreateContextNoConfigCase : public TestCase
117 {
118 public:
CreateContextNoConfigCase(EglTestContext & eglTestCtx)119     CreateContextNoConfigCase(EglTestContext &eglTestCtx)
120         : TestCase(eglTestCtx, "no_config", "EGL_KHR_no_config_context")
121     {
122     }
123 
iterate(void)124     IterateResult iterate(void)
125     {
126         const eglw::Library &egl = m_eglTestCtx.getLibrary();
127         const eglu::UniqueDisplay display(egl, eglu::getAndInitDisplay(m_eglTestCtx.getNativeDisplay(), DE_NULL));
128         tcu::TestLog &log = m_testCtx.getLog();
129 
130         if (!eglu::hasExtension(egl, *display, "EGL_KHR_no_config_context"))
131             TCU_THROW(NotSupportedError, "EGL_KHR_no_config_context is not supported");
132 
133         m_testCtx.setTestResult(QP_TEST_RESULT_PASS, "pass");
134 
135         for (int apiNdx = 0; apiNdx < (int)DE_LENGTH_OF_ARRAY(s_apis); apiNdx++)
136         {
137             const EGLenum api = s_apis[apiNdx].api;
138 
139             if (egl.bindAPI(api) == EGL_FALSE)
140             {
141                 TCU_CHECK(egl.getError() == EGL_BAD_PARAMETER);
142                 log << TestLog::Message << "eglBindAPI(" << eglu::getAPIStr(api) << ") failed, skipping"
143                     << TestLog::EndMessage;
144                 continue;
145             }
146 
147             log << TestLog::Message << "Creating " << s_apis[apiNdx].name << " context" << TestLog::EndMessage;
148 
149             const EGLContext context =
150                 egl.createContext(*display, (EGLConfig)0, EGL_NO_CONTEXT, s_apis[apiNdx].ctxAttrs);
151             const EGLenum err = egl.getError();
152 
153             if (context == EGL_NO_CONTEXT && err == EGL_BAD_MATCH && s_apis[apiNdx].noConfigOptional)
154             {
155                 log << TestLog::Message << "  Unsupported" << TestLog::EndMessage;
156             }
157             else if (context == EGL_NO_CONTEXT || err != EGL_SUCCESS)
158             {
159                 log << TestLog::Message << "  Fail, context: " << tcu::toHex(context)
160                     << ", error: " << eglu::getErrorName(err) << TestLog::EndMessage;
161                 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Failed to create context");
162             }
163             else
164             {
165                 // Destroy
166                 EGLU_CHECK_CALL(egl, destroyContext(*display, context));
167                 log << TestLog::Message << "  Pass" << TestLog::EndMessage;
168             }
169         }
170 
171         return STOP;
172     }
173 };
174 
CreateContextTests(EglTestContext & eglTestCtx)175 CreateContextTests::CreateContextTests(EglTestContext &eglTestCtx)
176     : TestCaseGroup(eglTestCtx, "create_context", "Basic eglCreateContext() tests")
177 {
178 }
179 
~CreateContextTests(void)180 CreateContextTests::~CreateContextTests(void)
181 {
182 }
183 
init(void)184 void CreateContextTests::init(void)
185 {
186     vector<NamedFilterList> filterLists;
187     getDefaultFilterLists(filterLists, eglu::FilterList());
188 
189     for (vector<NamedFilterList>::iterator i = filterLists.begin(); i != filterLists.end(); i++)
190         addChild(new CreateContextCase(m_eglTestCtx, i->getName(), i->getDescription(), *i));
191 
192     addChild(new CreateContextNoConfigCase(m_eglTestCtx));
193 }
194 
195 } // namespace egl
196 } // namespace deqp
197