Lines Matching refs:vertexData
1242 std::vector<tcu::Vec4> vertexData (12 * GRID_SIZE * GRID_SIZE); in createBuffers() local
1249 …vertexData[(y * GRID_SIZE + x) * 12 + 0] = tcu::Vec4(float(x+0) / float(GRID_SIZE) * 2.0f - 1.0f,… in createBuffers()
1250 vertexData[(y * GRID_SIZE + x) * 12 + 1] = color; in createBuffers()
1251 …vertexData[(y * GRID_SIZE + x) * 12 + 2] = tcu::Vec4(float(x+0) / float(GRID_SIZE) * 2.0f - 1.0f,… in createBuffers()
1252 vertexData[(y * GRID_SIZE + x) * 12 + 3] = color; in createBuffers()
1253 …vertexData[(y * GRID_SIZE + x) * 12 + 4] = tcu::Vec4(float(x+1) / float(GRID_SIZE) * 2.0f - 1.0f,… in createBuffers()
1254 vertexData[(y * GRID_SIZE + x) * 12 + 5] = color; in createBuffers()
1255 …vertexData[(y * GRID_SIZE + x) * 12 + 6] = tcu::Vec4(float(x+0) / float(GRID_SIZE) * 2.0f - 1.0f,… in createBuffers()
1256 vertexData[(y * GRID_SIZE + x) * 12 + 7] = color; in createBuffers()
1257 …vertexData[(y * GRID_SIZE + x) * 12 + 8] = tcu::Vec4(float(x+1) / float(GRID_SIZE) * 2.0f - 1.0f,… in createBuffers()
1258 vertexData[(y * GRID_SIZE + x) * 12 + 9] = color; in createBuffers()
1259 …vertexData[(y * GRID_SIZE + x) * 12 + 10] = tcu::Vec4(float(x+1) / float(GRID_SIZE) * 2.0f - 1.0f,… in createBuffers()
1260 vertexData[(y * GRID_SIZE + x) * 12 + 11] = color; in createBuffers()
1267 …gl.bufferData(GL_ARRAY_BUFFER, (int)(vertexData.size() * sizeof(tcu::Vec4)), vertexData[0].getPtr(… in createBuffers()