1 /*-------------------------------------------------------------------------
2 * drawElements Quality Program OpenGL ES 3.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 Texture count performance tests.
22 *//*--------------------------------------------------------------------*/
23
24 #include "es3pTextureCountTests.hpp"
25 #include "es3pTextureCases.hpp"
26 #include "gluStrUtil.hpp"
27
28 #include "deStringUtil.hpp"
29
30 #include "glwEnums.hpp"
31
32 using std::string;
33
34 namespace deqp
35 {
36 namespace gles3
37 {
38 namespace Performance
39 {
40
TextureCountTests(Context & context)41 TextureCountTests::TextureCountTests(Context &context)
42 : TestCaseGroup(context, "count", "Texture Count Performance Tests")
43 {
44 }
45
~TextureCountTests(void)46 TextureCountTests::~TextureCountTests(void)
47 {
48 }
49
init(void)50 void TextureCountTests::init(void)
51 {
52 static const struct
53 {
54 const char *name;
55 uint32_t internalFormat;
56 } texFormats[] = {{"rgb565", GL_RGB565}, {"rgb8", GL_RGB8}, {"rgba8", GL_RGBA8}, {"rgba8ui", GL_RGBA8UI},
57 {"rg16f", GL_RG16F}, {"rgba16f", GL_RGBA16F}, {"rgba32f", GL_RGBA32F}};
58 static const int texCounts[] = {1, 2, 4, 8};
59
60 for (int formatNdx = 0; formatNdx < DE_LENGTH_OF_ARRAY(texFormats); formatNdx++)
61 {
62 for (int cntNdx = 0; cntNdx < DE_LENGTH_OF_ARRAY(texCounts); cntNdx++)
63 {
64 uint32_t format = texFormats[formatNdx].internalFormat;
65 uint32_t wrapS = GL_CLAMP_TO_EDGE;
66 uint32_t wrapT = GL_CLAMP_TO_EDGE;
67 uint32_t minFilter = GL_NEAREST;
68 uint32_t magFilter = GL_NEAREST;
69 int numTextures = texCounts[cntNdx];
70 string name = string(texFormats[formatNdx].name) + "_" + de::toString(numTextures);
71 string description = glu::getTextureFormatName(format);
72
73 addChild(new Texture2DRenderCase(m_context, name.c_str(), description.c_str(), format, wrapS, wrapT,
74 minFilter, magFilter, tcu::Mat3(), numTextures, false /* npot */));
75 }
76 }
77 }
78
79 } // namespace Performance
80 } // namespace gles3
81 } // namespace deqp
82