13c827367444ee418f129b2c238299f49d3264554Jarkko Poyry/*-------------------------------------------------------------------------
23c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * drawElements Quality Program Random Shader Generator
33c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * ----------------------------------------------------
43c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
53c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * Copyright 2014 The Android Open Source Project
63c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
73c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * Licensed under the Apache License, Version 2.0 (the "License");
83c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * you may not use this file except in compliance with the License.
93c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * You may obtain a copy of the License at
103c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
113c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *      http://www.apache.org/licenses/LICENSE-2.0
123c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
133c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * Unless required by applicable law or agreed to in writing, software
143c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * distributed under the License is distributed on an "AS IS" BASIS,
153c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
163c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * See the License for the specific language governing permissions and
173c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * limitations under the License.
183c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
193c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *//*!
203c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * \file
213c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * \brief Program generator.
223c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *//*--------------------------------------------------------------------*/
233c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
243c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "rsgProgramGenerator.hpp"
253c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "rsgShaderGenerator.hpp"
263c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "rsgGeneratorState.hpp"
273c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
283c827367444ee418f129b2c238299f49d3264554Jarkko Poyryusing std::vector;
293c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
303c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace rsg
313c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
323c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
333c827367444ee418f129b2c238299f49d3264554Jarkko PoyryProgramGenerator::ProgramGenerator (void)
343c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
353c827367444ee418f129b2c238299f49d3264554Jarkko Poyry}
363c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
373c827367444ee418f129b2c238299f49d3264554Jarkko PoyryProgramGenerator::~ProgramGenerator (void)
383c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
393c827367444ee418f129b2c238299f49d3264554Jarkko Poyry}
403c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
413c827367444ee418f129b2c238299f49d3264554Jarkko Poyryvoid ProgramGenerator::generate (
423c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	const ProgramParameters&	programParams,
433c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	Shader&						vertexShader,
443c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	Shader&						fragmentShader)
453c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
463c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	// Random number generator
473c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	de::Random rnd(programParams.seed);
483c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
493c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	GeneratorState state(programParams, rnd);
503c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
513c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	// Fragment shader
523c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
533c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		ShaderGenerator			shaderGen(state);
543c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		vector<ShaderInput*>	emptyOutputs; // \note [pyry] gl_FragColor is added in ShaderGenerator
553c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		shaderGen.generate(programParams.fragmentParameters, fragmentShader, emptyOutputs);
563c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
573c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
583c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	// Vertex shader
593c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
603c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		ShaderGenerator shaderGen(state);
613c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
623c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		// Initialize outputs from fragment shader inputs
633c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		const vector<ShaderInput*>& fragmentInputs = fragmentShader.getInputs(); // \note gl_Position and dEQP_Position are handled in ShaderGenerator
643c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
653c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		shaderGen.generate(programParams.vertexParameters, vertexShader, fragmentInputs);
663c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
673c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
683c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	// Allocate samplers \todo [pyry] Randomize allocation.
693c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	{
703c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		const vector<ShaderInput*>&		vertexUniforms		= vertexShader.getUniforms();
713c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		const vector<ShaderInput*>&		fragmentUniforms	= fragmentShader.getUniforms();
723c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		vector<ShaderInput*>			unifiedSamplers;
733c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		int								curSamplerNdx	= 0;
743c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
753c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		// Build unified sampler list.
763c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		for (vector<ShaderInput*>::const_iterator i = vertexUniforms.begin(); i != vertexUniforms.end(); i++)
773c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		{
783c827367444ee418f129b2c238299f49d3264554Jarkko Poyry			if ((*i)->getVariable()->getType().isSampler())
793c827367444ee418f129b2c238299f49d3264554Jarkko Poyry				unifiedSamplers.push_back(*i);
803c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		}
813c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
823c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		for (vector<ShaderInput*>::const_iterator i = fragmentUniforms.begin(); i != fragmentUniforms.end(); i++)
833c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		{
843c827367444ee418f129b2c238299f49d3264554Jarkko Poyry			if ((*i)->getVariable()->getType().isSampler())
853c827367444ee418f129b2c238299f49d3264554Jarkko Poyry				unifiedSamplers.push_back(*i);
863c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		}
873c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
883c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		// Assign sampler indices.
893c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		for (vector<ShaderInput*>::const_iterator i = unifiedSamplers.begin(); i != unifiedSamplers.end(); i++)
903c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		{
913c827367444ee418f129b2c238299f49d3264554Jarkko Poyry			ShaderInput* input = *i;
923c827367444ee418f129b2c238299f49d3264554Jarkko Poyry			if (input->getVariable()->getType().isSampler())
933c827367444ee418f129b2c238299f49d3264554Jarkko Poyry			{
943c827367444ee418f129b2c238299f49d3264554Jarkko Poyry				input->getValueRange().getMin() = curSamplerNdx;
953c827367444ee418f129b2c238299f49d3264554Jarkko Poyry				input->getValueRange().getMax() = curSamplerNdx;
963c827367444ee418f129b2c238299f49d3264554Jarkko Poyry				curSamplerNdx += 1;
973c827367444ee418f129b2c238299f49d3264554Jarkko Poyry			}
983c827367444ee418f129b2c238299f49d3264554Jarkko Poyry		}
993c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	}
1003c827367444ee418f129b2c238299f49d3264554Jarkko Poyry}
1013c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
1023c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // rsg
103