1 /*------------------------------------------------------------------------- 2 * drawElements Quality Program OpenGL ES 2.0 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 "es2sStressTests.hpp" 25 #include "es2sMemoryTests.hpp" 26 #include "es2sLongRunningTests.hpp" 27 #include "es2sSpecialFloatTests.hpp" 28 #include "es2sVertexArrayTests.hpp" 29 #include "es2sDrawTests.hpp" 30 31 namespace deqp 32 { 33 namespace gles2 34 { 35 namespace Stress 36 { 37 StressTests(Context & context)38StressTests::StressTests (Context& context) 39 : TestCaseGroup(context, "stress", "Stress tests") 40 { 41 } 42 ~StressTests(void)43StressTests::~StressTests (void) 44 { 45 } 46 init(void)47void StressTests::init (void) 48 { 49 addChild(new MemoryTests (m_context)); 50 addChild(new LongRunningTests (m_context)); 51 addChild(new SpecialFloatTests (m_context)); 52 addChild(new VertexArrayTests (m_context)); 53 addChild(new DrawTests (m_context)); 54 } 55 56 } // Stress 57 } // gles2 58 } // deqp 59