es3fFunctionalTests.cpp revision 3c827367444ee418f129b2c238299f49d3264554
13c827367444ee418f129b2c238299f49d3264554Jarkko Poyry/*-------------------------------------------------------------------------
23c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * drawElements Quality Program OpenGL ES 3.0 Module
33c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * -------------------------------------------------
43c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
53c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * Copyright 2014 The Android Open Source Project
63c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
73c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * Licensed under the Apache License, Version 2.0 (the "License");
83c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * you may not use this file except in compliance with the License.
93c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * You may obtain a copy of the License at
103c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
113c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *      http://www.apache.org/licenses/LICENSE-2.0
123c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
133c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * Unless required by applicable law or agreed to in writing, software
143c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * distributed under the License is distributed on an "AS IS" BASIS,
153c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
163c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * See the License for the specific language governing permissions and
173c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * limitations under the License.
183c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
193c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *//*!
203c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * \file
213c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * \brief Functional Test Group.
223c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *//*--------------------------------------------------------------------*/
233c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
243c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFunctionalTests.hpp"
253c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
263c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fColorClearTest.hpp"
273c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fDepthTests.hpp"
283c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fPrerequisiteTests.hpp"
293c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fStencilTests.hpp"
303c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fDepthStencilTests.hpp"
313c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fVertexArrayTest.hpp"
323c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fUniformBlockTests.hpp"
333c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fUniformApiTests.hpp"
343c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFragmentOutputTests.hpp"
353c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fOcclusionQueryTests.hpp"
363c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fDepthStencilClearTests.hpp"
373c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fSamplerObjectTests.hpp"
383c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fAttribLocationTests.hpp"
393c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fPixelBufferObjectTests.hpp"
403c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fRasterizationTests.hpp"
413c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fRasterizerDiscardTests.hpp"
423c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fTransformFeedbackTests.hpp"
433c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fVertexArrayObjectTests.hpp"
443c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fPrimitiveRestartTests.hpp"
453c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fInstancedRenderingTests.hpp"
463c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fSyncTests.hpp"
473c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fBlendTests.hpp"
483c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fRandomFragmentOpTests.hpp"
493c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fMultisampleTests.hpp"
503c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fImplementationLimitTests.hpp"
513c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fDitheringTests.hpp"
523c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fClippingTests.hpp"
533c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fPolygonOffsetTests.hpp"
543c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fDrawTests.hpp"
553c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFragOpInteractionTests.hpp"
563c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFlushFinishTests.hpp"
573c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFlushFinishTests.hpp"
583c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fDefaultVertexAttributeTests.hpp"
593c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fScissorTests.hpp"
603c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fLifetimeTests.hpp"
613c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
623c827367444ee418f129b2c238299f49d3264554Jarkko Poyry// Shader tests
633c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderApiTests.hpp"
643c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderConstExprTests.hpp"
653c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderDiscardTests.hpp"
663c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderIndexingTests.hpp"
673c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderLoopTests.hpp"
683c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderMatrixTests.hpp"
693c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderOperatorTests.hpp"
703c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderReturnTests.hpp"
713c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderStructTests.hpp"
723c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderSwitchTests.hpp"
733c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fRandomShaderTests.hpp"
743c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFragDepthTests.hpp"
753c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderPrecisionTests.hpp"
763c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderBuiltinVarTests.hpp"
773c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderTextureFunctionTests.hpp"
783c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderDerivateTests.hpp"
793c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderPackingFunctionTests.hpp"
803c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderCommonFunctionTests.hpp"
813c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderInvarianceTests.hpp"
823c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderFragDataTests.hpp"
833c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fBuiltinPrecisionTests.hpp"
843c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
853c827367444ee418f129b2c238299f49d3264554Jarkko Poyry// Texture tests
863c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fTextureFormatTests.hpp"
873c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fTextureWrapTests.hpp"
883c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fTextureFilteringTests.hpp"
893c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fTextureMipmapTests.hpp"
903c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fTextureSizeTests.hpp"
913c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fTextureSwizzleTests.hpp"
923c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fTextureShadowTests.hpp"
933c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fTextureSpecificationTests.hpp"
943c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fVertexTextureTests.hpp"
953c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fTextureUnitTests.hpp"
963c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fCompressedTextureTests.hpp"
973c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
983c827367444ee418f129b2c238299f49d3264554Jarkko Poyry// Fbo tests
993c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFboApiTests.hpp"
1003c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFboCompletenessTests.hpp"
1013c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFboColorbufferTests.hpp"
1023c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFboDepthbufferTests.hpp"
1033c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFboStencilbufferTests.hpp"
1043c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFramebufferBlitTests.hpp"
1053c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFboMultisampleTests.hpp"
1063c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFboRenderTest.hpp"
1073c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFboInvalidateTests.hpp"
1083c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
1093c827367444ee418f129b2c238299f49d3264554Jarkko Poyry// Buffer tests
1103c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fBufferWriteTests.hpp"
1113c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fBufferMapTests.hpp"
1123c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fBufferCopyTests.hpp"
1133c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
1143c827367444ee418f129b2c238299f49d3264554Jarkko Poyry// Negative API tests
1153c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fNegativeBufferApiTests.hpp"
1163c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fNegativeTextureApiTests.hpp"
1173c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fNegativeShaderApiTests.hpp"
1183c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fNegativeFragmentApiTests.hpp"
1193c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fNegativeVertexArrayApiTests.hpp"
1203c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fNegativeStateApiTests.hpp"
1213c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
1223c827367444ee418f129b2c238299f49d3264554Jarkko Poyry// State query tests
1233c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fBooleanStateQueryTests.hpp"
1243c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fIntegerStateQueryTests.hpp"
1253c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fInteger64StateQueryTests.hpp"
1263c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFloatStateQueryTests.hpp"
1273c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fTextureStateQueryTests.hpp"
1283c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fStringQueryTests.hpp"
1293c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fSamplerStateQueryTests.hpp"
1303c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fBufferObjectQueryTests.hpp"
1313c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fFboStateQueryTests.hpp"
1323c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fRboStateQueryTests.hpp"
1333c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fShaderStateQueryTests.hpp"
1343c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fInternalFormatQueryTests.hpp"
1353c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fIndexedStateQueryTests.hpp"
1363c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
1373c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "es3fReadPixelsTests.hpp"
1383c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
1393c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "glsShaderLibrary.hpp"
1403c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
1413c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace deqp
1423c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
1433c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace gles3
1443c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
1453c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace Functional
1463c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
1473c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
1483c827367444ee418f129b2c238299f49d3264554Jarkko Poyryclass ShaderLibraryTest : public TestCaseGroup
1493c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
1503c827367444ee418f129b2c238299f49d3264554Jarkko Poyrypublic:
1513c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	ShaderLibraryTest (Context& context, const char* name, const char* description)
1523c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		: TestCaseGroup(context, name, description)
1533c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
1543c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
1553c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
1563c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void init (void)
1573c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
1583c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		gls::ShaderLibrary			shaderLibrary(m_testCtx, m_context.getRenderContext(), m_context.getContextInfo());
1593c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		std::string					fileName	= std::string("shaders/") + getName() + ".test";
1603c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		std::vector<tcu::TestNode*>	children	= shaderLibrary.loadShaderFile(fileName.c_str());
1613c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
1623c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		for (int i = 0; i < (int)children.size(); i++)
1633c827367444ee418f129b2c238299f49d3264554Jarkko Poyry			addChild(children[i]);
1643c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
1653c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
1663c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
1673c827367444ee418f129b2c238299f49d3264554Jarkko Poyryclass ShaderBuiltinFunctionTests : public TestCaseGroup
1683c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
1693c827367444ee418f129b2c238299f49d3264554Jarkko Poyrypublic:
1703c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	ShaderBuiltinFunctionTests (Context& context)
1713c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		: TestCaseGroup(context, "builtin_functions", "Built-in Function Tests")
1723c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
1733c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
1743c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
1753c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void init (void)
1763c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
1773c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderCommonFunctionTests	(m_context));
1783c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderPackingFunctionTests	(m_context));
1793c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(createBuiltinPrecisionTests	(m_context));
1803c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
1813c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
1823c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
1833c827367444ee418f129b2c238299f49d3264554Jarkko Poyryclass ShaderTests : public TestCaseGroup
1843c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
1853c827367444ee418f129b2c238299f49d3264554Jarkko Poyrypublic:
1863c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	ShaderTests (Context& context)
1873c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		: TestCaseGroup(context, "shaders", "Shading Language Tests")
1883c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
1893c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
1903c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
1913c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void init (void)
1923c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
1933c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderLibraryTest			(m_context, "preprocessor",			"Preprocessor Tests"));
1943c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderLibraryTest			(m_context, "constants",			"Constant Literal Tests"));
1953c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderLibraryTest			(m_context, "linkage",				"Linkage Tests"));
1963c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderLibraryTest			(m_context, "conversions",			"Type Conversion Tests"));
1973c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderLibraryTest			(m_context, "conditionals",			"Conditionals Tests"));
1983c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderLibraryTest			(m_context, "declarations",			"Declarations Tests"));
1993c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderLibraryTest			(m_context, "swizzles",				"Swizzle Tests"));
2003c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderLibraryTest			(m_context, "functions",			"Function Tests"));
2013c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderLibraryTest			(m_context, "arrays",				"Array Tests"));
2023c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderLibraryTest			(m_context, "keywords",				"Keyword Tests"));
2033c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderLibraryTest			(m_context, "qualification_order",	"Order Of Qualification Tests"));
2043c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderLibraryTest			(m_context, "scoping",				"Scoping of Declarations"));
2053c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderLibraryTest			(m_context, "negative",				"Miscellaneous Negative Shader Compilation Tests"));
2063c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
2073c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderDiscardTests			(m_context));
2083c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderIndexingTests		(m_context));
2093c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderLoopTests			(m_context));
2103c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderOperatorTests		(m_context));
2113c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderMatrixTests			(m_context));
2123c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderReturnTests			(m_context));
2133c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderStructTests			(m_context));
2143c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderSwitchTests			(m_context));
2153c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new FragDepthTests				(m_context));
2163c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderPrecisionTests		(m_context));
2173c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderBuiltinVarTests		(m_context));
2183c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderTextureFunctionTests	(m_context)); // \todo [pyry] Move to builtin?
2193c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderDerivateTests		(m_context)); // \todo [pyry] Move to builtin?
2203c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderBuiltinFunctionTests	(m_context));
2213c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderInvarianceTests		(m_context));
2223c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderFragDataTests		(m_context));
2233c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderConstExprTests		(m_context));
2243c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
2253c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new RandomShaderTests			(m_context));
2263c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
2273c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
2283c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
2293c827367444ee418f129b2c238299f49d3264554Jarkko Poyryclass TextureTests : public TestCaseGroup
2303c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
2313c827367444ee418f129b2c238299f49d3264554Jarkko Poyrypublic:
2323c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	TextureTests (Context& context)
2333c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		: TestCaseGroup(context, "texture", "Texture Tests")
2343c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
2353c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
2363c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
2373c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void init (void)
2383c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
2393c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new TextureFormatTests			(m_context));
2403c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new TextureSizeTests			(m_context));
2413c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new TextureWrapTests			(m_context));
2423c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new TextureFilteringTests		(m_context));
2433c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new TextureMipmapTests			(m_context));
2443c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new TextureSwizzleTests		(m_context));
2453c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new TextureShadowTests			(m_context));
2463c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new TextureSpecificationTests	(m_context));
2473c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new VertexTextureTests			(m_context));
2483c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new TextureUnitTests			(m_context));
2493c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new CompressedTextureTests		(m_context));
2503c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
2513c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
2523c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
2533c827367444ee418f129b2c238299f49d3264554Jarkko Poyryclass FboTests : public TestCaseGroup
2543c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
2553c827367444ee418f129b2c238299f49d3264554Jarkko Poyrypublic:
2563c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	FboTests (Context& context)
2573c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		: TestCaseGroup(context, "fbo", "Framebuffer Object Tests")
2583c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
2593c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
2603c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
2613c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void init (void)
2623c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
2633c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new FboApiTests			(m_context));
2643c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(createFboCompletenessTests	(m_context));
2653c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new FboRenderTestGroup		(m_context));
2663c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new FboColorTests			(m_context));
2673c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new FboDepthTests			(m_context));
2683c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new FboStencilTests		(m_context));
2693c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new FramebufferBlitTests	(m_context));
2703c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new FboMultisampleTests	(m_context));
2713c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new FboInvalidateTests		(m_context));
2723c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
2733c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
2743c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
2753c827367444ee418f129b2c238299f49d3264554Jarkko Poyryclass BufferTests : public TestCaseGroup
2763c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
2773c827367444ee418f129b2c238299f49d3264554Jarkko Poyrypublic:
2783c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	BufferTests (Context& context)
2793c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		: TestCaseGroup(context, "buffer", "Buffer object tests")
2803c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
2813c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
2823c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
2833c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void init (void)
2843c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
2853c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new BufferWriteTests	(m_context));
2863c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new BufferMapTests		(m_context));
2873c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new BufferCopyTests	(m_context));
2883c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
2893c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
2903c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
2913c827367444ee418f129b2c238299f49d3264554Jarkko Poyryclass NegativeApiTestGroup : public TestCaseGroup
2923c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
2933c827367444ee418f129b2c238299f49d3264554Jarkko Poyrypublic:
2943c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	NegativeApiTestGroup (Context& context)
2953c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		: TestCaseGroup(context, "negative_api", "Negative API Tests")
2963c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
2973c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
2983c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
2993c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	virtual ~NegativeApiTestGroup (void)
3003c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
3013c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
3023c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
3033c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	virtual void init (void)
3043c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
3053c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new NegativeBufferApiTests			(m_context));
3063c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new NegativeTextureApiTests		(m_context));
3073c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new NegativeShaderApiTests			(m_context));
3083c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new NegativeFragmentApiTests		(m_context));
3093c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new NegativeVertexArrayApiTests	(m_context));
3103c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new NegativeStateApiTests			(m_context));
3113c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
3123c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
3133c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
3143c827367444ee418f129b2c238299f49d3264554Jarkko Poyryclass FragmentOpTests : public TestCaseGroup
3153c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
3163c827367444ee418f129b2c238299f49d3264554Jarkko Poyrypublic:
3173c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	FragmentOpTests (Context& context)
3183c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		: TestCaseGroup(context, "fragment_ops", "Per-Fragment Operation Tests")
3193c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
3203c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
3213c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
3223c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void init (void)
3233c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
3243c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new DepthTests				(m_context));
3253c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new StencilTests			(m_context));
3263c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new DepthStencilTests		(m_context));
3273c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new BlendTests				(m_context));
3283c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new RandomFragmentOpTests	(m_context));
3293c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new FragOpInteractionTests	(m_context));
3303c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ScissorTests			(m_context));
3313c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
3323c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
3333c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
3343c827367444ee418f129b2c238299f49d3264554Jarkko Poyryclass StateQueryTests : public TestCaseGroup
3353c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
3363c827367444ee418f129b2c238299f49d3264554Jarkko Poyrypublic:
3373c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	StateQueryTests (Context& context)
3383c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		: TestCaseGroup(context, "state_query", "State Query Tests")
3393c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
3403c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
3413c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
3423c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void init (void)
3433c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
3443c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new BooleanStateQueryTests		(m_context));
3453c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new IntegerStateQueryTests		(m_context));
3463c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new Integer64StateQueryTests	(m_context));
3473c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new FloatStateQueryTests		(m_context));
3483c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new IndexedStateQueryTests		(m_context));
3493c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new TextureStateQueryTests		(m_context));
3503c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new StringQueryTests			(m_context));
3513c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new SamplerStateQueryTests		(m_context));
3523c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new BufferObjectQueryTests		(m_context));
3533c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new FboStateQueryTests			(m_context));
3543c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new RboStateQueryTests			(m_context));
3553c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ShaderStateQueryTests		(m_context));
3563c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new InternalFormatQueryTests	(m_context));
3573c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
3583c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
3593c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
3603c827367444ee418f129b2c238299f49d3264554Jarkko PoyryFunctionalTests::FunctionalTests (Context& context)
3613c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	: TestCaseGroup(context, "functional", "Functionality Tests")
3623c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
3633c827367444ee418f129b2c238299f49d3264554Jarkko Poyry}
3643c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
3653c827367444ee418f129b2c238299f49d3264554Jarkko PoyryFunctionalTests::~FunctionalTests (void)
3663c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
3673c827367444ee418f129b2c238299f49d3264554Jarkko Poyry}
3683c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
3693c827367444ee418f129b2c238299f49d3264554Jarkko Poyryvoid FunctionalTests::init (void)
3703c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
3713c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new PrerequisiteTests			(m_context));
3723c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new ImplementationLimitTests	(m_context));
3733c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new ColorClearTest				(m_context));
3743c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new DepthStencilClearTests		(m_context));
3753c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new BufferTests				(m_context));
3763c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new ShaderTests				(m_context));
3773c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new TextureTests				(m_context));
3783c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new FragmentOpTests			(m_context));
3793c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new FboTests					(m_context));
3803c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new VertexArrayTestGroup		(m_context));
3813c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new UniformBlockTests			(m_context));
3823c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new UniformApiTests			(m_context));
3833c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(createAttributeLocationTests	(m_context));
3843c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new FragmentOutputTests		(m_context));
3853c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new SamplerObjectTests			(m_context));
3863c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new PixelBufferObjectTests		(m_context));
3873c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new RasterizationTests			(m_context));
3883c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new OcclusionQueryTests		(m_context));
3893c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new VertexArrayObjectTestGroup	(m_context));
3903c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new PrimitiveRestartTests		(m_context));
3913c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new InstancedRenderingTests	(m_context));
3923c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new RasterizerDiscardTests		(m_context));
3933c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new TransformFeedbackTests		(m_context));
3943c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new SyncTests					(m_context));
3953c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new ShaderApiTests				(m_context));
3963c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new NegativeApiTestGroup		(m_context));
3973c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new MultisampleTests			(m_context));
3983c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new ReadPixelsTests			(m_context));
3993c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new DitheringTests				(m_context));
4003c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new StateQueryTests			(m_context));
4013c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new ClippingTests				(m_context));
4023c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new PolygonOffsetTests			(m_context));
4033c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new DrawTests					(m_context));
4043c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new FlushFinishTests			(m_context));
4053c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(new DefaultVertexAttributeTests(m_context));
4063c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	addChild(createLifetimeTests			(m_context));
4073c827367444ee418f129b2c238299f49d3264554Jarkko Poyry}
4083c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
4093c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // Functional
4103c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // gles3
4113c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // deqp
412