Home | History | Annotate | Download | only in glshared

Lines Matching refs:ValueBlock

192 static void genCompareOp (ostringstream& output, const char* dstVec4Var, const ValueBlock& valueBlock, const char* nonFloatNamePrefix, const char* checkVarName)
196 for (size_t ndx = 0; ndx < valueBlock.outputs.size(); ndx++)
198 const Value& val = valueBlock.outputs[ndx];
422 static void generateUniformDeclarations (std::ostream& dst, const ValueBlock& valueBlock)
424 for (size_t ndx = 0; ndx < valueBlock.uniforms.size(); ndx++)
426 const Value& val = valueBlock.uniforms[ndx];
1178 const ValueBlock& valueBlock = m_spec.values;
1181 const int numRenderPasses = valueBlock.outputs.empty() ? 1 : (int)valueBlock.outputs[0].elements.size() / valueBlock.outputs[0].type.getScalarSize();
1188 vector<vector<float> > attribValues (valueBlock.inputs.size());
1197 for (size_t valNdx = 0; valNdx < valueBlock.inputs.size(); valNdx++)
1199 const Value& val = valueBlock.inputs[valNdx];
1263 for (size_t valNdx = 0; valNdx < valueBlock.outputs.size(); valNdx++)
1265 const Value& val = valueBlock.outputs[valNdx];
1275 for (size_t valNdx = 0; valNdx < valueBlock.uniforms.size(); valNdx++)
1277 const Value& val = valueBlock.uniforms[valNdx];
1336 dumpValues(log, valueBlock, arrayNdx);