13c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#ifndef _TEGLSIMPLECONFIGCASE_HPP
23c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#define _TEGLSIMPLECONFIGCASE_HPP
33c827367444ee418f129b2c238299f49d3264554Jarkko Poyry/*-------------------------------------------------------------------------
43c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * drawElements Quality Program EGL 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 Simple Context construction test.
243c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *//*--------------------------------------------------------------------*/
253c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
263c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "tcuDefs.hpp"
273c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "teglTestCase.hpp"
283c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "tcuEgl.hpp"
293c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "egluConfigFilter.hpp"
303c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
313c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include <vector>
323c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include <string>
333c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
343c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace deqp
353c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
363c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace egl
373c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
383c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
393c827367444ee418f129b2c238299f49d3264554Jarkko Poyryclass SimpleConfigCase : public TestCase
403c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
413c827367444ee418f129b2c238299f49d3264554Jarkko Poyrypublic:
423c827367444ee418f129b2c238299f49d3264554Jarkko Poyry							SimpleConfigCase			(EglTestContext& eglTestCtx, const char* name, const char* description, const std::vector<EGLint>& configIds);
433c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	virtual					~SimpleConfigCase			(void);
443c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
453c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	void					init						(void);
463c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	IterateResult			iterate						(void);
473c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
483c827367444ee418f129b2c238299f49d3264554Jarkko Poyryprivate:
493c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	virtual void			executeForConfig			(tcu::egl::Display& display, EGLConfig config)	= DE_NULL;
503c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
513c827367444ee418f129b2c238299f49d3264554Jarkko Poyry							SimpleConfigCase			(const SimpleConfigCase& other);
523c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	SimpleConfigCase&		operator=					(const SimpleConfigCase& other);
533c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
543c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	std::vector<EGLint>					m_configIds;
553c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	std::vector<EGLConfig>				m_configs;
563c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	std::vector<EGLConfig>::iterator	m_configIter;
573c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
583c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
593c827367444ee418f129b2c238299f49d3264554Jarkko Poyryclass NamedConfigIdSet
603c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
613c827367444ee418f129b2c238299f49d3264554Jarkko Poyrypublic:
623c827367444ee418f129b2c238299f49d3264554Jarkko Poyry								NamedConfigIdSet		(void) {}
633c827367444ee418f129b2c238299f49d3264554Jarkko Poyry								NamedConfigIdSet		(const char* name, const char* description) : m_name(name), m_description(description) {}
643c827367444ee418f129b2c238299f49d3264554Jarkko Poyry								NamedConfigIdSet		(const char* name, const char* description, const std::vector<EGLint>& configIds) : m_name(name), m_description(description), m_configIds(configIds) {}
653c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
663c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	const char*					getName					(void) const	{ return m_name.c_str();		}
673c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	const char*					getDescription			(void) const	{ return m_description.c_str();	}
683c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	const std::vector<EGLint>	getConfigIds			(void) const	{ return m_configIds;			}
693c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
703c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	std::vector<EGLint>&		getConfigIds			(void)			{ return m_configIds;			}
713c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
723c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	static void					getDefaultSets			(std::vector<NamedConfigIdSet>& configSets, const std::vector<eglu::ConfigInfo>& configInfos, const eglu::FilterList& baseFilters);
733c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
743c827367444ee418f129b2c238299f49d3264554Jarkko Poyryprivate:
753c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	std::string					m_name;
763c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	std::string					m_description;
773c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	std::vector<EGLint>			m_configIds;
783c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
793c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
803c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // egl
813c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // deqp
823c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
833c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#endif // _TEGLSIMPLECONFIGCASE_HPP
84