Lines Matching refs:uboData
1622 std::vector<GLfloat> uboData; in TEST_P() local
1623 uboData.resize(maxUniformBlockSize * 2); // underlying data is twice the max block size in TEST_P()
1628 uboData[offs0 + 0] = 1; in TEST_P()
1629 uboData[offs0 + 1] = 0; in TEST_P()
1630 uboData[offs0 + 2] = 0; in TEST_P()
1631 uboData[offs0 + 3] = 1; in TEST_P()
1639 uboData[offs1 + 0] = 0; in TEST_P()
1640 uboData[offs1 + 1] = 1; in TEST_P()
1641 uboData[offs1 + 2] = 0; in TEST_P()
1642 uboData[offs1 + 3] = 1; in TEST_P()
1646 glBufferData(GL_UNIFORM_BUFFER, uboData.size() * sizeof(GLfloat), uboData.data(), in TEST_P()