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)37StressTests::StressTests (Context& context) 38 : TestCaseGroup(context, "stress", "Stress tests") 39 { 40 } 41 ~StressTests(void)42StressTests::~StressTests (void) 43 { 44 } 45 init(void)46void StressTests::init (void) 47 { 48 addChild(new DrawTests (m_context)); 49 addChild(new VertexAttributeBindingTests (m_context)); 50 addChild(new TessellationGeometryInteractionTests (m_context)); 51 } 52 53 } // Stress 54 } // gles31 55 } // deqp 56