Lines Matching defs:instanced
2755 /* Regular and instanced draw calls, vertex attribute divisor: 0 */
2846 /** Tests regular and instanced draw calls with vertex attribute divisor set to 0
2916 /** Tests instanced draw calls with vertex attribute divisor set to 1
2948 * @param use_instancing true if instanced draw call was made, otherwise false
3106 bool executeTest(_draw_call_type draw_call, bool instanced, bool zero_vertex_attrib_divisor);
3113 bool verifyXFBData(const void* data, _draw_call_type draw_call, bool instanced, bool zero_vertex_attrib_divisor);
3330 * @param instanced True if the draw call should be instanced, false otherwise.
3336 bool VAOTest::executeTest(_draw_call_type draw_call, bool instanced, bool zero_vertex_attrib_divisor)
3369 if (instanced)
3385 if (instanced)
3415 result = verifyXFBData(pXFBData, draw_call, instanced, zero_vertex_attrib_divisor);
3473 * Don't forget about instanced draw calls. We'll be XFBing data for either 1 or m_n_draw_call_instances
3817 } /* for (non-instanced & instanced draw calls) */
3828 * @param instanced True if the draw call was instanced, false otherwise.
3832 bool VAOTest::verifyXFBData(const void* data, _draw_call_type draw_call, bool instanced,
3837 const unsigned int n_instances = (instanced) ? m_n_draw_call_instances : 1;