Searched refs:m_unusedData (Results 1 – 3 of 3) sorted by relevance
/external/deqp/modules/glshared/ |
D | glsMemoryStressCase.cpp | 452 vector<uint8_t> m_unusedData; member in deqp::gls::MemObjectAllocator 474 m_unusedData = vector<uint8_t>(unusedSize); in MemObjectAllocator() 477 m_unusedData = vector<uint8_t>(128); in MemObjectAllocator() 603 DE_ASSERT((int)m_unusedData.size() >= width * height * 4); in allocateTexture() 604 …mage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, &(m_unusedData[0])); in allocateTexture() 618 … glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, &(m_unusedData[0])); in allocateTexture() 693 DE_ASSERT((int)m_unusedData.size() >= size); in allocateBuffer() 694 glBufferData(GL_ARRAY_BUFFER, size, &(m_unusedData[0]), GL_DYNAMIC_DRAW); in allocateBuffer() 708 glBufferSubData(GL_ARRAY_BUFFER, 0, 1, &(m_unusedData[0])); in allocateBuffer()
|
/external/deqp/framework/common/ |
D | tcuThreadUtil.cpp | 173 if (m_unusedData.size() < size) in getUnusedData() 175 m_unusedData.resize(size); in getUnusedData() 178 return &(m_unusedData[0]); in getUnusedData()
|
D | tcuThreadUtil.hpp | 258 std::vector<uint8_t> m_unusedData; member in tcu::ThreadUtil::Thread
|