Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/modules/glshared/
DglsMemoryStressCase.cpp456 vector<deUint8> m_unusedData; member in deqp::gls::MemObjectAllocator
477 m_unusedData = vector<deUint8>(unusedSize); in MemObjectAllocator()
480 m_unusedData = vector<deUint8>(128); in MemObjectAllocator()
606 DE_ASSERT((int)m_unusedData.size() >= width*height*4); in allocateTexture()
607 …mage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, &(m_unusedData[0])); in allocateTexture()
621 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, &(m_unusedData[0])); in allocateTexture()
696 DE_ASSERT((int)m_unusedData.size() >= size); in allocateBuffer()
697 glBufferData(GL_ARRAY_BUFFER, size, &(m_unusedData[0]), GL_DYNAMIC_DRAW); in allocateBuffer()
711 glBufferSubData(GL_ARRAY_BUFFER, 0, 1, &(m_unusedData[0])); in allocateBuffer()
/third_party/vk-gl-cts/framework/common/
DtcuThreadUtil.cpp182 if (m_unusedData.size() < size) in getUnusedData()
184 m_unusedData.resize(size); in getUnusedData()
187 return &(m_unusedData[0]); in getUnusedData()
DtcuThreadUtil.hpp202 std::vector<deUint8> m_unusedData; member in tcu::ThreadUtil::Thread