Home | History | Annotate | Download | only in randomshaders

Lines Matching refs:m_max

200 								ConstValueRangeAccess	(void) : m_type(DE_NULL), m_min(DE_NULL), m_max(DE_NULL) {}
201 ConstValueRangeAccess (const VariableType& type, const Scalar* minVal, const Scalar* maxVal) : m_type(&type), m_min(const_cast<Scalar*>(minVal)), m_max(const_cast<Scalar*>(maxVal)) {}
205 ConstValueAccess getMax (void) const { return ConstValueAccess(*m_type, m_max); }
220 Scalar* m_max;
225 return ConstValueRangeAccess(m_type->getElementType(), m_min + compNdx, m_max + compNdx);
231 return ConstValueRangeAccess(m_type->getElementType(), m_min + offset, m_max + offset);
237 return ConstValueRangeAccess(m_type->getMembers()[memberNdx].getType(), m_min + offset, m_max + offset);
247 ValueAccess getMax (void) { return ValueAccess(*m_type, m_max); }
256 return ValueRangeAccess(m_type->getElementType(), m_min + compNdx, m_max + compNdx);
262 return ValueRangeAccess(m_type->getElementType(), m_min + offset, m_max + offset);
268 return ValueRangeAccess(m_type->getMembers()[memberNdx].getType(), m_min + offset, m_max + offset);
299 const Scalar* getMaxPtr (void) const { return m_max.empty() ? DE_NULL : &m_max[0]; }
302 Scalar* getMaxPtr (void) { return m_max.empty() ? DE_NULL : &m_max[0]; }
306 std::vector<Scalar> m_max;