xref: /aosp_15_r20/external/deqp/modules/gles31/stress/es31sStressTests.cpp (revision 35238bce31c2a825756842865a792f8cf7f89930)
1 /*-------------------------------------------------------------------------
2  * drawElements Quality Program OpenGL ES 3.1 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 Stress tests.
22  *//*--------------------------------------------------------------------*/
23 
24 #include "es31sStressTests.hpp"
25 
26 #include "es31sDrawTests.hpp"
27 #include "es31sVertexAttributeBindingTests.hpp"
28 #include "es31sTessellationGeometryInteractionTests.hpp"
29 
30 namespace deqp
31 {
32 namespace gles31
33 {
34 namespace Stress
35 {
36 
StressTests(Context & context)37 StressTests::StressTests(Context &context) : TestCaseGroup(context, "stress", "Stress tests")
38 {
39 }
40 
~StressTests(void)41 StressTests::~StressTests(void)
42 {
43 }
44 
init(void)45 void StressTests::init(void)
46 {
47     addChild(new DrawTests(m_context));
48     addChild(new VertexAttributeBindingTests(m_context));
49     addChild(new TessellationGeometryInteractionTests(m_context));
50 }
51 
52 } // namespace Stress
53 } // namespace gles31
54 } // namespace deqp
55