Lines Matching refs:m_workWidth
166 const int m_workWidth; // !< total work width member in deqp::gles31::Functional::__anon1d296c8a0111::InterInvocationTestCase
185 , m_workWidth (256) in InterInvocationTestCase()
225 const int bufferElements = m_workWidth * m_workHeight * m_elementsPerInvocation; in init()
238 const int bufferElements = m_workWidth * m_workHeight * m_elementsPerInvocation; in init()
241 …) << tcu::TestLog::Message << "Allocating image for storage, size " << m_workWidth << "x" << m_wor… in init()
245 gl.texStorage2D(GL_TEXTURE_2D, 1, GL_R32I, m_workWidth, m_workHeight * m_elementsPerInvocation); in init()
254 const std::vector<deInt32> zeroBuffer(m_workWidth * m_workHeight * m_elementsPerInvocation, 0); in init()
255 …gl.texSubImage2D(GL_TEXTURE_2D, 0, 0, 0, m_workWidth, m_workHeight * m_elementsPerInvocation, GL_R… in init()
265 const int bufferElements = m_workWidth * m_workHeight; in init()
319 const int groupsX = m_workWidth / m_localWidth; in runCompute()
322 DE_ASSERT((m_workWidth % m_localWidth) == 0); in runCompute()
330 << " total work size: " << m_workWidth << "x" << m_workHeight << "\n" in runCompute()
381 std::vector<deInt32> results (m_workWidth * m_workHeight); in verifyResults()
386 …mapped = gl.mapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, m_workWidth * m_workHeight * sizeof(deInt3… in verifyResults()
390 deMemcpy(&results[0], mapped, m_workWidth * m_workHeight * sizeof(deUint32)); in verifyResults()