Home
last modified time | relevance | path

Searched refs:uboData (Results 1 – 3 of 3) sorted by relevance

/external/angle/src/tests/gl_tests/
DUniformBufferTest.cpp1622 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()
[all …]
DGLSLTest.cpp3887 std::unique_ptr<char[]> uboData(new char[uboDataSize]); in TEST_P() local
3906 *reinterpret_cast<GLint(*)[2]>(&uboData[values.offset + j * values.stride]); in TEST_P()
3913 glBufferData(GL_UNIFORM_BUFFER, uboDataSize, &uboData[0], GL_STATIC_DRAW); in TEST_P()
/external/deqp/external/openglcts/modules/gles31/
Des31cDrawIndirectTests.cpp5017 std::vector<GLuint> uboData; in Run() local
5023 uboData.resize(4 * 4, 0); in Run()
5025 uboData[0] = static_cast<GLuint>(coords.size()); //count in Run()
5026 uboData[4] = 1; //primcount in Run()
5027 uboData[8] = 0; //first in Run()
5028 uboData[12] = 0; //mbz in Run()
5033 uboData.resize(4 * 5, 0); in Run()
5034 uboData[0] = static_cast<GLuint>(coords.size()); //count in Run()
5035 uboData[4] = 1; //primcount in Run()
5036 uboData[8] = 0; //firstindex in Run()
[all …]