13c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#ifndef _SGLRREFERENCEUTILS_HPP
23c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#define _SGLRREFERENCEUTILS_HPP
33c827367444ee418f129b2c238299f49d3264554Jarkko Poyry/*-------------------------------------------------------------------------
43c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * drawElements Quality Program OpenGL ES Utilities
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 Reference context utils
243c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *//*--------------------------------------------------------------------*/
253c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
263c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "tcuDefs.hpp"
273c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "rrVertexAttrib.hpp"
283c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "rrPrimitiveTypes.hpp"
293c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "rrShaders.hpp"
303c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "rrRenderState.hpp"
313c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "gluRenderContext.hpp"
323c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
333c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace sglr
343c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
353c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace rr_util
363c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
373c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
383c827367444ee418f129b2c238299f49d3264554Jarkko Poyryrr::VertexAttribType			mapGLPureIntegerVertexAttributeType		(deUint32 type);
393c827367444ee418f129b2c238299f49d3264554Jarkko Poyryrr::VertexAttribType			mapGLFloatVertexAttributeType			(deUint32 type, bool normalizedInteger, int size, glu::ContextType ctxType);
403c827367444ee418f129b2c238299f49d3264554Jarkko Poyryint								mapGLSize								(int size);
413c827367444ee418f129b2c238299f49d3264554Jarkko Poyryrr::PrimitiveType				mapGLPrimitiveType						(deUint32 type);
423c827367444ee418f129b2c238299f49d3264554Jarkko Poyryrr::IndexType					mapGLIndexType							(deUint32 type);
433c827367444ee418f129b2c238299f49d3264554Jarkko Poyryrr::GeometryShaderOutputType	mapGLGeometryShaderOutputType			(deUint32 primitive);
443c827367444ee418f129b2c238299f49d3264554Jarkko Poyryrr::GeometryShaderInputType		mapGLGeometryShaderInputType			(deUint32 primitive);
453c827367444ee418f129b2c238299f49d3264554Jarkko Poyryrr::TestFunc					mapGLTestFunc							(deUint32 func);
463c827367444ee418f129b2c238299f49d3264554Jarkko Poyryrr::StencilOp					mapGLStencilOp							(deUint32 op);
473c827367444ee418f129b2c238299f49d3264554Jarkko Poyryrr::BlendEquation				mapGLBlendEquation						(deUint32 equation);
483c827367444ee418f129b2c238299f49d3264554Jarkko Poyryrr::BlendEquationAdvanced		mapGLBlendEquationAdvanced				(deUint32 equation);
493c827367444ee418f129b2c238299f49d3264554Jarkko Poyryrr::BlendFunc					mapGLBlendFunc							(deUint32 func);
503c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
513c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // rr_util
523c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // sglr
533c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
543c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#endif // _SGLRREFERENCEUTILS_HPP
55