Lines Matching refs:m_VertexAttribute
184 return this->m_VertexAttribute[index].m_IsStream; in IsVertexStream()
193 return this->m_VertexAttribute[index].m_Usage; in GetVertexAttributeUsage()
202 return this->m_VertexAttribute[index].m_FormatType; in GetVertexAttributeFormatType()
211 return this->m_VertexAttribute[index].m_Dimension; in GetVertexAttributeDimension()
222 if (!this->m_VertexAttribute[index].m_IsStream) in GetVertexStreamPtr()
232 return this->m_VertexAttribute[index].m_Stream[side]; in GetVertexStreamPtr()
243 if (!this->m_VertexAttribute[index].m_IsStream) in GetVertexStreamPtr()
253 return this->m_VertexAttribute[index].m_Stream[side]; in GetVertexStreamPtr()
262 if (this->m_VertexAttribute[index].m_IsStream) in GetVertexParameter()
267 return reinterpret_cast<f32*>(this->m_VertexAttribute[index].m_Stream[0]); in GetVertexParameter()
276 if (this->m_VertexAttribute[index].m_IsStream) in GetVertexParameter()
281 return reinterpret_cast<const f32*>(this->m_VertexAttribute[index].m_Stream[0]); in GetVertexParameter()
293 if (this->m_VertexAttribute[index].m_IsStream) in SetVertexParameter()
315 this->m_VertexAttribute[index].m_CommandPtr[side]); in SetVertexParameter()
327 return this->m_VertexAttribute[index].m_CommandPtr[side] = ptr; in SetVertexAttributeCommandPtr()
438 this->m_VertexAttribute[this->m_ResVertexAttributeDataCount].m_Usage = usage; in AddVertexAttribute()
439 this->m_VertexAttribute[this->m_ResVertexAttributeDataCount].m_FormatType = formatType; in AddVertexAttribute()
440 this->m_VertexAttribute[this->m_ResVertexAttributeDataCount].m_Dimension = dimension; in AddVertexAttribute()
441 this->m_VertexAttribute[this->m_ResVertexAttributeDataCount].m_IsStream = isStream; in AddVertexAttribute()
442 this->m_VertexAttribute[this->m_ResVertexAttributeDataCount].m_Stream[0] = stream0; in AddVertexAttribute()
443 this->m_VertexAttribute[this->m_ResVertexAttributeDataCount].m_Stream[1] = stream1; in AddVertexAttribute()
444 this->m_VertexAttribute[this->m_ResVertexAttributeDataCount].m_CommandPtr[0] = NULL; in AddVertexAttribute()
445 this->m_VertexAttribute[this->m_ResVertexAttributeDataCount].m_CommandPtr[1] = NULL; in AddVertexAttribute()
447 return &this->m_VertexAttribute[this->m_ResVertexAttributeDataCount - 1]; in AddVertexAttribute()
455 VertexAttribute m_VertexAttribute[PARTICLEUSAGE_COUNT]; variable