Lines Matching refs:m_VertexAttribute

182         return this->m_VertexAttribute[index].m_IsStream;  in IsVertexStream()
191 return this->m_VertexAttribute[index].m_Usage; in GetVertexAttributeUsage()
200 return this->m_VertexAttribute[index].m_FormatType; in GetVertexAttributeFormatType()
209 return this->m_VertexAttribute[index].m_Dimension; in GetVertexAttributeDimension()
220 if (!this->m_VertexAttribute[index].m_IsStream) in GetVertexStreamPtr()
230 return this->m_VertexAttribute[index].m_Stream[side]; in GetVertexStreamPtr()
241 if (!this->m_VertexAttribute[index].m_IsStream) in GetVertexStreamPtr()
251 return this->m_VertexAttribute[index].m_Stream[side]; in GetVertexStreamPtr()
260 if (this->m_VertexAttribute[index].m_IsStream) in GetVertexParameter()
265 return reinterpret_cast<f32*>(this->m_VertexAttribute[index].m_Stream[0]); in GetVertexParameter()
274 if (this->m_VertexAttribute[index].m_IsStream) in GetVertexParameter()
279 return reinterpret_cast<const f32*>(this->m_VertexAttribute[index].m_Stream[0]); in GetVertexParameter()
291 if (this->m_VertexAttribute[index].m_IsStream) in SetVertexParameter()
313 this->m_VertexAttribute[index].m_CommandPtr[side]); in SetVertexParameter()
325 return this->m_VertexAttribute[index].m_CommandPtr[side] = ptr; in SetVertexAttributeCommandPtr()
436 this->m_VertexAttribute[this->m_ResVertexAttributeDataCount].m_Usage = usage; in AddVertexAttribute()
437 this->m_VertexAttribute[this->m_ResVertexAttributeDataCount].m_FormatType = formatType; in AddVertexAttribute()
438 this->m_VertexAttribute[this->m_ResVertexAttributeDataCount].m_Dimension = dimension; in AddVertexAttribute()
439 this->m_VertexAttribute[this->m_ResVertexAttributeDataCount].m_IsStream = isStream; in AddVertexAttribute()
440 this->m_VertexAttribute[this->m_ResVertexAttributeDataCount].m_Stream[0] = stream0; in AddVertexAttribute()
441 this->m_VertexAttribute[this->m_ResVertexAttributeDataCount].m_Stream[1] = stream1; in AddVertexAttribute()
442 this->m_VertexAttribute[this->m_ResVertexAttributeDataCount].m_CommandPtr[0] = NULL; in AddVertexAttribute()
443 this->m_VertexAttribute[this->m_ResVertexAttributeDataCount].m_CommandPtr[1] = NULL; in AddVertexAttribute()
445 return &this->m_VertexAttribute[this->m_ResVertexAttributeDataCount - 1]; in AddVertexAttribute()
453 VertexAttribute m_VertexAttribute[PARTICLEUSAGE_COUNT]; variable