13c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#ifndef _RSGUTILS_HPP
23c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#define _RSGUTILS_HPP
33c827367444ee418f129b2c238299f49d3264554Jarkko Poyry/*-------------------------------------------------------------------------
43c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * drawElements Quality Program Random Shader Generator
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 Utilities.
243c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *//*--------------------------------------------------------------------*/
253c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
263c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "rsgDefs.hpp"
273c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "rsgShader.hpp"
283c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "rsgVariableValue.hpp"
293c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "deRandom.hpp"
303c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "rsgGeneratorState.hpp"
313c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "deMath.h"
323c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
333c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include <vector>
343c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
353c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace rsg
363c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
373c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
383c827367444ee418f129b2c238299f49d3264554Jarkko Poyryvoid		computeUnifiedUniforms		(const Shader& vertexShader, const Shader& fragmentShader, std::vector<const ShaderInput*>& uniforms);
393c827367444ee418f129b2c238299f49d3264554Jarkko Poyryvoid		computeUniformValues		(de::Random& rnd, std::vector<VariableValue>& values, const std::vector<const ShaderInput*>& uniforms);
403c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
413c827367444ee418f129b2c238299f49d3264554Jarkko Poyry// \todo [2011-03-26 pyry] Move to ExpressionUtils!
423c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
433c827367444ee418f129b2c238299f49d3264554Jarkko Poyrybool			isUndefinedValueRange			(ConstValueRangeAccess valueRange);
443c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
453c827367444ee418f129b2c238299f49d3264554Jarkko Poyryint				getConservativeValueExprDepth	(const GeneratorState& state, ConstValueRangeAccess valueRange);
463c827367444ee418f129b2c238299f49d3264554Jarkko Poyryint				getTypeConstructorDepth			(const VariableType& type);
473c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
483c827367444ee418f129b2c238299f49d3264554Jarkko PoyryVariableType	computeRandomType				(GeneratorState& state, int maxScalars);
493c827367444ee418f129b2c238299f49d3264554Jarkko Poyryvoid			computeRandomValueRange			(GeneratorState& state, ValueRangeAccess valueRange);
503c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
513c827367444ee418f129b2c238299f49d3264554Jarkko Poyryfloat			computeDynamicRangeWeight		(ConstValueRangeAccess valueRange);
523c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
533c827367444ee418f129b2c238299f49d3264554Jarkko Poyryinline float getQuantizedFloat (de::Random& rnd, float min, float max, float step)
543c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
553c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	int numSteps = (int)((max-min)/step);
563c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	return min + step*rnd.getInt(0, numSteps);
573c827367444ee418f129b2c238299f49d3264554Jarkko Poyry}
583c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
593c827367444ee418f129b2c238299f49d3264554Jarkko Poyryinline bool quantizeFloatRange (float& min, float& max)
603c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
613c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	const float	subdiv = 8;
623c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
633c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	float newMin = deFloatCeil(min*subdiv)/subdiv;
643c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	if (newMin <= max)
653c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		min = newMin; // Minimum value quantized
663c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	else
673c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		return false;
683c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
693c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	float newMax = deFloatFloor(max*subdiv)/subdiv;
703c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	if (min <= newMax)
713c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		max = newMax;
723c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	else
733c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		return false;
743c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
753c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	return true;
763c827367444ee418f129b2c238299f49d3264554Jarkko Poyry}
773c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
783c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // rsg
793c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
803c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#endif // _RSGUTILS_HPP
81