13c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#ifndef _ES31FNEGATIVETESTSHARED_HPP
23c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#define _ES31FNEGATIVETESTSHARED_HPP
33c827367444ee418f129b2c238299f49d3264554Jarkko Poyry/*-------------------------------------------------------------------------
43c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * drawElements Quality Program OpenGL ES 3.1 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 Shared structures for ES 3.1 negative API tests
243c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *//*--------------------------------------------------------------------*/
253c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
263c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "tcuDefs.hpp"
273c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "glwDefs.hpp"
283c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "gluCallLogWrapper.hpp"
293c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "tes31TestCase.hpp"
303c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
313c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace deqp
323c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
333c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace gles31
343c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
353c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace Functional
363c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
373c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace NegativeTestShared
383c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
393c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
403c827367444ee418f129b2c238299f49d3264554Jarkko Poyryclass ErrorCase : public TestCase
413c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
423c827367444ee418f129b2c238299f49d3264554Jarkko Poyrypublic:
433c827367444ee418f129b2c238299f49d3264554Jarkko Poyry								ErrorCase		(Context& ctx, const char* name, const char* desc);
443c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	virtual 					~ErrorCase		(void) {}
453c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
463c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	virtual void				expectMessage	(glw::GLenum source, glw::GLenum type) = 0;
473c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	virtual void				expectError		(glw::GLenum error0, glw::GLenum error1) = 0;
483c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
493c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
503c827367444ee418f129b2c238299f49d3264554Jarkko Poyryclass NegativeTestContext : public glu::CallLogWrapper
513c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
523c827367444ee418f129b2c238299f49d3264554Jarkko Poyrypublic:
53271c2654cc44f23492888c7ef40c36c2fd810c77Jarkko Pöyry								NegativeTestContext		(ErrorCase& host, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, tcu::TestLog& log, tcu::ResultCollector& results, bool enableLog);
543c827367444ee418f129b2c238299f49d3264554Jarkko Poyry								~NegativeTestContext	();
553c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
563c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	const tcu::ResultCollector&	getResults				(void) const;
573c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
583c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void						fail					(const std::string& msg);
593c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	int							getInteger				(glw::GLenum pname) const;
603c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	const glu::RenderContext&	getRenderContext		(void) const { return m_renderCtx; }
61271c2654cc44f23492888c7ef40c36c2fd810c77Jarkko Pöyry	const glu::ContextInfo& 	getContextInfo			(void) const { return m_ctxInfo; }
623c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void						beginSection			(const std::string& desc);
633c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void						endSection				(void);
643c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
653c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void						expectMessage			(glw::GLenum source, glw::GLenum type);
663c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void						expectError				(glw::GLenum error);
673c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void						expectError				(glw::GLenum error0, glw::GLenum error1);
683c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
693c827367444ee418f129b2c238299f49d3264554Jarkko Poyryprivate:
703c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	glu::RenderContext&			m_renderCtx;
71271c2654cc44f23492888c7ef40c36c2fd810c77Jarkko Pöyry	const glu::ContextInfo& 	m_ctxInfo;
723c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	ErrorCase&					m_host;
733c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	tcu::ResultCollector&		m_results;
743c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	int							m_openSections;
753c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
763c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
773c827367444ee418f129b2c238299f49d3264554Jarkko Poyrytypedef void (*TestFunc)(NegativeTestContext& ctx);
783c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
793c827367444ee418f129b2c238299f49d3264554Jarkko Poyrystruct FunctionContainer
803c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
813c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	TestFunc	function;
823c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	const char* name;
833c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	const char* desc;
843c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
853c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
863c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // NegativeTestShared
873c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // Functional
883c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // gles31
893c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // deqp
903c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
913c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#endif // _ES31FNEGATIVETESTSHARED_HPP
92