Home | History | Annotate | Download | only in angle_tests

Lines Matching refs:indices

131     static const GLubyte indices[] = { 0, 7, 6, 9, 8, 0 };
132 runTest(GL_UNSIGNED_BYTE, 0, indices + 1);
137 static const GLushort indices[] = { 0, 7, 6, 9, 8, 0 };
138 runTest(GL_UNSIGNED_SHORT, 0, indices + 1);
148 static const GLuint indices[] = { 0, 7, 6, 9, 8, 0 };
149 runTest(GL_UNSIGNED_INT, 0, indices + 1);
154 static const GLubyte indices[] = { 0, 7, 6, 9, 8, 0 };
159 glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(indices), indices, GL_STATIC_DRAW);
168 static const GLushort indices[] = { 0, 7, 6, 9, 8, 0 };
173 glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(indices), indices, GL_STATIC_DRAW);
187 static const GLuint indices[] = { 0, 7, 6, 9, 8, 0 };
192 glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(indices), indices, GL_STATIC_DRAW);