Lines Matching refs:m_TexcoordArray
40 m_TexcoordArray(NULL), in TrianglesRenderData()
144 m_TexcoordArray = (f32*)demo::Alloc(m_VerticesNum * 3 * 4); in CreateArrays()
145 if ( m_TexcoordArray == NULL ) in CreateArrays()
152 m_TexcoordArray[3 * i] = 0.0f; in CreateArrays()
153 m_TexcoordArray[3 * i + 1] = 0.0f; in CreateArrays()
154 m_TexcoordArray[3 * i + 2] = 0.0f; in CreateArrays()
230 if ( m_TexcoordArray != NULL ) in DestroyArrays()
232 demo::Free((void*) m_TexcoordArray); in DestroyArrays()
233 m_TexcoordArray = NULL; in DestroyArrays()
421 m_TexcoordArray); in UpdateBuffers()
617 m_TexcoordArray[3 * index] = texcoordS; in SetTexcoord()
618 m_TexcoordArray[3 * index + 1] = texcoordT; in SetTexcoord()
619 m_TexcoordArray[3 * index + 2] = 1.0f; in SetTexcoord()
632 m_TexcoordArray[3 * index] = texcoordS; in SetTexcoord()
633 m_TexcoordArray[3 * index + 1] = texcoordT; in SetTexcoord()
634 m_TexcoordArray[3 * index + 2] = texcoordR; in SetTexcoord()