13c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#ifndef _ES2FAPICASE_HPP
23c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#define _ES2FAPICASE_HPP
33c827367444ee418f129b2c238299f49d3264554Jarkko Poyry/*-------------------------------------------------------------------------
43c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * drawElements Quality Program OpenGL ES 2.0 Module
53c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * -------------------------------------------------
63c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
73c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * Copyright 2014 The Android Open Source Project
83c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
93c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * Licensed under the Apache License, Version 2.0 (the "License");
103c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * you may not use this file except in compliance with the License.
113c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * You may obtain a copy of the License at
123c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
133c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *      http://www.apache.org/licenses/LICENSE-2.0
143c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
153c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * Unless required by applicable law or agreed to in writing, software
163c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * distributed under the License is distributed on an "AS IS" BASIS,
173c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
183c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * See the License for the specific language governing permissions and
193c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * limitations under the License.
203c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
213c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *//*!
223c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * \file
233c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * \brief API test case.
243c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *//*--------------------------------------------------------------------*/
253c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
263c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "tcuDefs.hpp"
273c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "tes2TestCase.hpp"
283c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "gluCallLogWrapper.hpp"
293c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "tcuTestLog.hpp"
303c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
313c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace deqp
323c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
333c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace gles2
343c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
353c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace Functional
363c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
373c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
383c827367444ee418f129b2c238299f49d3264554Jarkko Poyryclass ApiCase : public TestCase, protected glu::CallLogWrapper
393c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
403c827367444ee418f129b2c238299f49d3264554Jarkko Poyrypublic:
413c827367444ee418f129b2c238299f49d3264554Jarkko Poyry						ApiCase					(Context& context, const char* name, const char* description);
423c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	virtual				~ApiCase				(void);
433c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
443c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	IterateResult		iterate					(void);
453c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
463c827367444ee418f129b2c238299f49d3264554Jarkko Poyryprotected:
473c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	virtual void		test					(void) = DE_NULL;
483c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
493c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void				expectError				(deUint32 error);
503c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void				expectError				(deUint32 error0, deUint32 error1);
513c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void				getSupportedExtensions	(const deUint32 numSupportedValues, const deUint32 extension, std::vector<int>& values);
523c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void				checkBooleans			(deUint8 value, deUint8 expected);
5389cc960c55407e802fba6366e0282e52201cafafJarkko Pöyry	void				checkBooleans			(deInt32 value, deUint8 expected);
543c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
553c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	tcu::TestLog&		m_log;
563c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
573c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
583c827367444ee418f129b2c238299f49d3264554Jarkko Poyry// Helper macro for declaring ApiCases.
593c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#define ES2F_ADD_API_CASE(NAME, DESCRIPTION, TEST_FUNC_BODY)							\
603c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	do {																				\
613c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		class ApiCase_##NAME : public ApiCase {											\
623c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		public:																			\
633c827367444ee418f129b2c238299f49d3264554Jarkko Poyry			ApiCase_##NAME (Context& context) : ApiCase(context, #NAME, DESCRIPTION) {}	\
643c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		protected:																		\
65dc795cd4f3d064cbbe2bf9899bf2088d206b7434Chih-Hung Hsieh			void test (void) TEST_FUNC_BODY  /* NOLINT(TEST_FUNC_BODY) */				\
663c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		};																				\
673c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		addChild(new ApiCase_##NAME(m_context));										\
683c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	} while (deGetFalse())
693c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
703c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // Functional
713c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // gles2
723c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // deqp
733c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
743c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#endif // _ES2FAPICASE_HPP
75