153f17a9db278d33517d9888dd77848f554522a38JP Abgrall#ifndef _ES31FTEXTURESPECIFICATIONTESTS_HPP 253f17a9db278d33517d9888dd77848f554522a38JP Abgrall#define _ES31FTEXTURESPECIFICATIONTESTS_HPP 353f17a9db278d33517d9888dd77848f554522a38JP Abgrall/*------------------------------------------------------------------------- 453f17a9db278d33517d9888dd77848f554522a38JP Abgrall * drawElements Quality Program OpenGL ES 3.1 Module 553f17a9db278d33517d9888dd77848f554522a38JP Abgrall * ------------------------------------------------- 653f17a9db278d33517d9888dd77848f554522a38JP Abgrall * 753f17a9db278d33517d9888dd77848f554522a38JP Abgrall * Copyright 2014 The Android Open Source Project 853f17a9db278d33517d9888dd77848f554522a38JP Abgrall * 953f17a9db278d33517d9888dd77848f554522a38JP Abgrall * Licensed under the Apache License, Version 2.0 (the "License"); 1053f17a9db278d33517d9888dd77848f554522a38JP Abgrall * you may not use this file except in compliance with the License. 1153f17a9db278d33517d9888dd77848f554522a38JP Abgrall * You may obtain a copy of the License at 1253f17a9db278d33517d9888dd77848f554522a38JP Abgrall * 1353f17a9db278d33517d9888dd77848f554522a38JP Abgrall * http://www.apache.org/licenses/LICENSE-2.0 1453f17a9db278d33517d9888dd77848f554522a38JP Abgrall * 1553f17a9db278d33517d9888dd77848f554522a38JP Abgrall * Unless required by applicable law or agreed to in writing, software 1653f17a9db278d33517d9888dd77848f554522a38JP Abgrall * distributed under the License is distributed on an "AS IS" BASIS, 1753f17a9db278d33517d9888dd77848f554522a38JP Abgrall * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 1853f17a9db278d33517d9888dd77848f554522a38JP Abgrall * See the License for the specific language governing permissions and 1953f17a9db278d33517d9888dd77848f554522a38JP Abgrall * limitations under the License. 2053f17a9db278d33517d9888dd77848f554522a38JP Abgrall * 2153f17a9db278d33517d9888dd77848f554522a38JP Abgrall *//*! 2253f17a9db278d33517d9888dd77848f554522a38JP Abgrall * \file 2353f17a9db278d33517d9888dd77848f554522a38JP Abgrall * \brief Texture specification tests. 2453f17a9db278d33517d9888dd77848f554522a38JP Abgrall *//*--------------------------------------------------------------------*/ 2553f17a9db278d33517d9888dd77848f554522a38JP Abgrall 2653f17a9db278d33517d9888dd77848f554522a38JP Abgrall#include "tcuDefs.hpp" 2753f17a9db278d33517d9888dd77848f554522a38JP Abgrall#include "tes31TestCase.hpp" 2853f17a9db278d33517d9888dd77848f554522a38JP Abgrall 2953f17a9db278d33517d9888dd77848f554522a38JP Abgrallnamespace deqp 30{ 31namespace gles31 32{ 33namespace Functional 34{ 35 36class TextureSpecificationTests : public TestCaseGroup 37{ 38public: 39 TextureSpecificationTests (Context& context); 40 ~TextureSpecificationTests (void); 41 42 void init (void); 43 44private: 45 TextureSpecificationTests (const TextureSpecificationTests& other); 46 TextureSpecificationTests& operator= (const TextureSpecificationTests& other); 47}; 48 49} // Functional 50} // gles31 51} // deqp 52 53#endif // _ES31FTEXTURESPECIFICATIONTESTS_HPP 54