Searched refs:m_dummyData (Results 1 – 3 of 3) sorted by relevance
/third_party/vk-gl-cts/modules/glshared/ |
D | glsMemoryStressCase.cpp | 456 vector<deUint8> m_dummyData; member in deqp::gls::MemObjectAllocator 477 m_dummyData = vector<deUint8>(dummySize); in MemObjectAllocator() 480 m_dummyData = vector<deUint8>(128); in MemObjectAllocator() 606 DE_ASSERT((int)m_dummyData.size() >= width*height*4); in allocateTexture() 607 …Image2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, &(m_dummyData[0])); in allocateTexture() 621 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, &(m_dummyData[0])); in allocateTexture() 696 DE_ASSERT((int)m_dummyData.size() >= size); in allocateBuffer() 697 glBufferData(GL_ARRAY_BUFFER, size, &(m_dummyData[0]), GL_DYNAMIC_DRAW); in allocateBuffer() 711 glBufferSubData(GL_ARRAY_BUFFER, 0, 1, &(m_dummyData[0])); in allocateBuffer()
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuThreadUtil.cpp | 182 if (m_dummyData.size() < size) in getDummyData() 184 m_dummyData.resize(size); in getDummyData() 187 return &(m_dummyData[0]); in getDummyData()
|
D | tcuThreadUtil.hpp | 202 std::vector<deUint8> m_dummyData; member in tcu::ThreadUtil::Thread
|