Home | History | Annotate | Download | only in randomshaders

Lines Matching refs:compNdx

97 	ConstStridedValueAccess		component				(int compNdx) const		{ return ConstStridedValueAccess(getType().getElementType(), m_value + Stride*compNdx);													}
130 StridedValueAccess component (int compNdx) { return StridedValueAccess(this->getType().getElementType(), this->m_value + Stride*compNdx); }
208 ConstValueRangeAccess component (int compNdx) const;
223 inline ConstValueRangeAccess ConstValueRangeAccess::component (int compNdx) const
225 return ConstValueRangeAccess(m_type->getElementType(), m_min + compNdx, m_max + compNdx);
249 ValueRangeAccess component (int compNdx);
254 inline ValueRangeAccess ValueRangeAccess::component (int compNdx)
256 return ValueRangeAccess(m_type->getElementType(), m_min + compNdx, m_max + compNdx);