Home | History | Annotate | Download | only in functional

Lines Matching refs:varValue

356 struct VarValue
361 VarValue (const glu::VarType& type_, const void* value_) : type(type_), value(value_) {}
364 std::ostream& operator<< (std::ostream& str, const VarValue& varValue)
366 DE_ASSERT(varValue.type.isBasicType());
368 const glu::DataType basicType = varValue.type.getBasicType();
382 case glu::TYPE_FLOAT: str << HexFloat(((const float*)varValue.value)[compNdx]); break;
383 case glu::TYPE_INT: str << ((const deInt32*)varValue.value)[compNdx]; break;
384 case glu::TYPE_UINT: str << tcu::toHex(((const deUint32*)varValue.value)[compNdx]); break;
385 case glu::TYPE_BOOL: str << HexBool(((const deUint32*)varValue.value)[compNdx]); break;
440 << VarValue(m_spec.inputs[inNdx].varType, curInputPtr[inNdx])
446 << VarValue(m_spec.outputs[outNdx].varType, curOutputPtr[outNdx])