Lines Matching refs:positionAttrOffset
240 int positionAttrOffset; member
291 << " offset: " << m_spec.positionAttrOffset << "\n" in init()
292 << " total offset: " << m_spec.bufferOffset + m_spec.positionAttrOffset << "\n" in init()
341 gl.glVertexAttribFormat(positionLoc, 4, GL_FLOAT, GL_FALSE, m_spec.positionAttrOffset); in renderTo()
357 gl.glVertexAttribFormat(positionLoc, 4, GL_FLOAT, GL_FALSE, m_spec.positionAttrOffset); in renderTo()
380 …const int positionAttrOffset = (flags & FLAG_ATTRIB_UNALIGNED) ? (3) : (flags & FLAG_ATTRIB_ALIGN… in genTestSpec() local
384 …const int bufferStrideBase = de::max(positionAttrOffset + 4 * datumSize, colorAttrOffset + 4 * da… in genTestSpec()
392 spec.positionAttrOffset = positionAttrOffset; in genTestSpec()
397 DE_ASSERT(!deIsAligned32(spec.bufferOffset + spec.positionAttrOffset, datumSize)); in genTestSpec()
399 DE_ASSERT(deIsAligned32(spec.bufferOffset + spec.positionAttrOffset, datumSize)); in genTestSpec()
469 …memcpy(&dataBuf[m_spec.bufferOffset + m_spec.positionAttrOffset + m_spec.bufferStride * ((y * GRID… in createBuffers()