Home
last modified time | relevance | path

Searched defs:VarSpec (Results 1 – 1 of 1) sorted by relevance

/third_party/vk-gl-cts/modules/glshared/
DglsLongStressCase.hpp56 struct VarSpec struct
58 union Value
64 std::string name;
65 glu::DataType type;
66 Value minValue;
67 Value maxValue;
70VarSpec (const std::string& name_, const T& minValue_, const T& maxValue_) : name(name_) { set(min… in VarSpec() argument
73 VarSpec (const std::string& name_, const T& value) : name(name_) { set(value, value); } in VarSpec() argument
75 void set (float minValue_, float maxValue_) in set()
83 …id set (const tcu::Vector<float, ValSize>& minValue_, const tcu::Vector<float, ValSize>& maxValue_) in set()
[all …]