1 /*-------------------------------------------------------------------------
2 * drawElements Quality Program OpenGL ES 3.0 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 Accuracy tests.
22 *//*--------------------------------------------------------------------*/
24 #include "es3aAccuracyTests.hpp"
25 #include "es3aTextureFilteringTests.hpp"
26 #include "es3aTextureMipmapTests.hpp"
27 #include "es3aVaryingInterpolationTests.hpp"
36 class TextureTests : public TestCaseGroup
39 TextureTests (Context& context)
40 : TestCaseGroup(context, "texture", "Texturing Accuracy Tests")
46 addChild(new TextureFilteringTests (m_context));
47 addChild(new TextureMipmapTests (m_context));
51 AccuracyTests::AccuracyTests (Context& context)
52 : TestCaseGroup(context, "accuracy", "Accuracy Tests")
56 AccuracyTests::~AccuracyTests (void)
60 void AccuracyTests::init (void)
62 addChild(new VaryingInterpolationTests (m_context));
63 addChild(new TextureTests (m_context));