Lines Matching refs:vertexAttribs
4296 std::vector<rr::VertexAttrib> vertexAttribs; in drawWithReference() local
4379 vertexAttribs.resize(vao.m_arrays.size()); in drawWithReference()
4384 …vertexAttribs[ndx].type = rr::VERTEXATTRIBTYPE_DONT_CARE; // reading with wrong type is allowed, b… in drawWithReference()
4385 vertexAttribs[ndx].generic = m_currentAttribs[ndx]; in drawWithReference()
4389 …vertexAttribs[ndx].type = rr::VERTEXATTRIBTYPE_DONT_CARE; // reading from deleted buffer, output z… in drawWithReference()
4390 vertexAttribs[ndx].generic = tcu::Vec4(0, 0, 0, 0); in drawWithReference()
4394 vertexAttribs[ndx].type = (vao.m_arrays[ndx].integer) ? in drawWithReference()
4397 vertexAttribs[ndx].size = sglr::rr_util::mapGLSize(vao.m_arrays[ndx].size); in drawWithReference()
4398 vertexAttribs[ndx].stride = vao.m_arrays[ndx].stride; in drawWithReference()
4399 vertexAttribs[ndx].instanceDivisor = vao.m_arrays[ndx].divisor; in drawWithReference()
4400 …vertexAttribs[ndx].pointer = (vao.m_arrays[ndx].bufferBinding) ? (vao.m_arrays[ndx].bufferBindin… in drawWithReference()
4533 …tanced(rr::DrawCommand(state, renderTarget, program, (int)vertexAttribs.size(), &vertexAttribs[0],… in drawWithReference()