Lines Matching defs:index
116 virtual void addIndex (const deUint32& index) = 0;
215 template<typename V> V convertIndexTo (deUint32 index);
216 template<> inline EmptyIndex convertIndexTo<EmptyIndex> (deUint32 index) { DE_UNREF(index); TCU_THROW(TestError, "Cannot add empty index"); }
217 template<> inline deUint16 convertIndexTo<deUint16> (deUint32 index) { return static_cast<deUint16>(index); }
218 template<> inline deUint32 convertIndexTo<deUint32> (deUint32 index) { return index; }
241 void addIndex (const deUint32& index) override;
428 void RaytracedGeometry<V, I>::addIndex (const deUint32& index)
430 m_indices.push_back(convertIndexTo<I>(index));
548 de::SharedPtr<SerialStorage> getBottomStorage (deUint32 index) const;
677 BlasPtr at (deUint32 index) const { return m_structs[index]; }
678 BlasPtr operator[] (deUint32 index) const { return m_structs[index]; }