Home | History | Annotate | Download | only in functional

Lines Matching full:instanced

539 		bool instanced;
566 DE_ASSERT(!(m_spec.instanced && m_spec.zeroStride));
592 << " instance divisor: " << ((m_spec.instanced) ? (1) : (0)) << "\n"
658 const int offset = (!m_spec.aliasingBuffers) ? (0) : (m_spec.instanced) ? (6 * (int)sizeof(tcu::Vec4)) : (6 * GRID_SIZE * GRID_SIZE * (int)sizeof(tcu::Vec4));
660 const int divisor = (m_spec.instanced) ? (1) : (0);
668 if (m_spec.instanced)
687 spec.instanced = !!(flags & FLAG_INSTANCED);
701 buf << ", instanced binding point";
714 const int vertexDataSize = (m_spec.instanced) ? (6) : (6 * GRID_SIZE * GRID_SIZE);
715 const int offsetColorSize = (m_spec.zeroStride) ? (2) : (m_spec.instanced) ? (2 * GRID_SIZE * GRID_SIZE) : (2 * 6 * GRID_SIZE * GRID_SIZE);
725 if (m_spec.instanced)
735 if (m_spec.instanced)
767 else if (m_spec.instanced)
1001 // draw grid. In instanced mode, each cell is an instance
1002 const bool instanced = (m_case == CASE_INSTANCED_BINDING) || (m_case == CASE_INSTANCED_ATTRIB);
1004 const int numPositionCells = (instanced) ? (1) : (numCells);
1006 const int numInstanceElementsPerCell = (instanced) ? (1) : (6);
1601 multipleGroup->addChild(new MultipleBindingCase(m_context, "instanced", MultipleBindingCase::FLAG_INSTANCED));