1 #ifndef _ES3FBUILTINPRECISIONTESTS_HPP 2 #define _ES3FBUILTINPRECISIONTESTS_HPP 3 4 /*------------------------------------------------------------------------- 5 * drawElements Quality Program OpenGL ES 3.0 Module 6 * ------------------------------------------------- 7 * 8 * Copyright 2014 The Android Open Source Project 9 * 10 * Licensed under the Apache License, Version 2.0 (the "License"); 11 * you may not use this file except in compliance with the License. 12 * You may obtain a copy of the License at 13 * 14 * http://www.apache.org/licenses/LICENSE-2.0 15 * 16 * Unless required by applicable law or agreed to in writing, software 17 * distributed under the License is distributed on an "AS IS" BASIS, 18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 19 * See the License for the specific language governing permissions and 20 * limitations under the License. 21 * 22 *//*! 23 * \file 24 * \brief Tests for precision and range of GLSL builtins and types. 25 *//*--------------------------------------------------------------------*/ 26 27 #include "tes3TestCase.hpp" 28 29 namespace deqp 30 { 31 namespace gles3 32 { 33 namespace Functional 34 { 35 36 TestCaseGroup* createBuiltinPrecisionTests (Context& context); 37 38 } // Functional 39 } // gles3 40 } // deqp 41 42 #endif // _ES3FBUILTINPRECISIONTESTS_HPP 43