Searched refs:valueBlock (Results 1 – 4 of 4) sorted by relevance
/external/deqp/framework/opengl/ |
D | gluShaderLibrary.cpp | 412 void parseValue (ValueBlock& valueBlock); 413 void parseValueBlock (ValueBlock& valueBlock); 415 void parseRequirement (CaseRequirement& valueBlock); 1015 void ShaderParser::parseValue (ValueBlock& valueBlock) in parseValue() argument 1026 dstBlock = &valueBlock.uniforms; in parseValue() 1028 dstBlock = &valueBlock.inputs; in parseValue() 1030 dstBlock = &valueBlock.outputs; in parseValue() 1096 void ShaderParser::parseValueBlock (ValueBlock& valueBlock) in parseValueBlock() argument 1105 parseValue(valueBlock); in parseValueBlock() 1150 void ShaderParser::parseRequirement (CaseRequirement& valueBlock) in parseRequirement() argument [all …]
|
D | gluShaderLibrary.hpp | 188 void genCompareFunctions (std::ostringstream& stream, const ValueBlock& valueBlock, bool useFlo…
|
/external/deqp/modules/glshared/ |
D | glsShaderLibraryCase.cpp | 188 …reOp (ostringstream& output, const char* dstVec4Var, const ValueBlock& valueBlock, const char* non… in genCompareOp() argument 192 for (size_t ndx = 0; ndx < valueBlock.outputs.size(); ndx++) in genCompareOp() 194 const Value& val = valueBlock.outputs[ndx]; in genCompareOp() 418 static void generateUniformDeclarations (std::ostream& dst, const ValueBlock& valueBlock) in generateUniformDeclarations() argument 420 for (size_t ndx = 0; ndx < valueBlock.uniforms.size(); ndx++) in generateUniformDeclarations() 422 const Value& val = valueBlock.uniforms[ndx]; in generateUniformDeclarations() 1151 const ValueBlock& valueBlock = m_spec.values; in execute() local 1154 …const int numRenderPasses = valueBlock.outputs.empty() ? 1 : (int)valueBlock.outputs[0].elements… in execute() 1161 vector<vector<float> > attribValues (valueBlock.inputs.size()); in execute() 1170 for (size_t valNdx = 0; valNdx < valueBlock.inputs.size(); valNdx++) in execute() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/ |
D | vktShaderLibrary.cpp | 123 void declareReferenceBlock (ostringstream& out, const ValueBlock& valueBlock) in declareReferenceBlock() argument 125 if (!valueBlock.outputs.empty()) in declareReferenceBlock() 126 genUniformBlock(out, "Reference", "ref", 0, REFERENCE_UNIFORM_BINDING, valueBlock.outputs); in declareReferenceBlock() 129 void declareUniforms (ostringstream& out, const ValueBlock& valueBlock) in declareUniforms() argument 131 if (!valueBlock.uniforms.empty()) in declareUniforms() 132 genUniformBlock(out, "Uniforms", "", 0, USER_UNIFORM_BINDING, valueBlock.uniforms); in declareUniforms() 201 void genCompareOp (ostringstream& output, const char* dstVec4Var, const ValueBlock& valueBlock, con… in genCompareOp() argument 205 for (size_t ndx = 0; ndx < valueBlock.outputs.size(); ndx++) in genCompareOp() 207 const Value& val = valueBlock.outputs[ndx]; in genCompareOp()
|