• Home
  • Raw
  • Download

Lines Matching refs:m_spec

254 	const TestSpec		m_spec;  member in deqp::gles31::Stress::__anone2379e0a0111::SingleBindingCase
260 , m_spec (genTestSpec(flags)) in SingleBindingCase()
281 << " bufferOffset: " << m_spec.bufferOffset << "\n" in init()
282 << " bufferStride: " << m_spec.bufferStride << "\n" in init()
285 << " offset: " << m_spec.positionAttrOffset << "\n" in init()
286 << " total offset: " << m_spec.bufferOffset + m_spec.positionAttrOffset << "\n" in init()
289 if (m_spec.hasColorAttr) in init()
293 << " offset: " << m_spec.colorAttrOffset << "\n" in init()
294 << " total offset: " << m_spec.bufferOffset + m_spec.colorAttrOffset << "\n" in init()
330 if (m_spec.hasColorAttr) in renderTo()
332 gl.glBindVertexBuffer(3, m_buf, m_spec.bufferOffset, m_spec.bufferStride); in renderTo()
335 gl.glVertexAttribFormat(positionLoc, 4, GL_FLOAT, GL_FALSE, m_spec.positionAttrOffset); in renderTo()
339 gl.glVertexAttribFormat(colorLoc, 4, GL_FLOAT, GL_FALSE, m_spec.colorAttrOffset); in renderTo()
349 gl.glBindVertexBuffer(3, m_buf, m_spec.bufferOffset, m_spec.bufferStride); in renderTo()
351 gl.glVertexAttribFormat(positionLoc, 4, GL_FLOAT, GL_FALSE, m_spec.positionAttrOffset); in renderTo()
441 …std::vector<deUint8> dataBuf (m_spec.bufferOffset + m_spec.bufferStride * GRID_SIZE * GRID_SIZE * … in createBuffers()
463 …memcpy(&dataBuf[m_spec.bufferOffset + m_spec.positionAttrOffset + m_spec.bufferStride * ((y * GRID… in createBuffers()
466 if (m_spec.hasColorAttr) in createBuffers()
468 …memcpy(&dataBuf[m_spec.bufferOffset + m_spec.colorAttrOffset + m_spec.bufferStride * ((y * GRID_SI… in createBuffers()
491 const bool useUniformColor = !m_spec.hasColorAttr; in genVertexSource()