Lines Matching refs:m_triangles
1127 std::vector<FillTriangle> m_triangles; member in deqp::gles2::Functional::__anon07cb73c90111::TriangleFillTest
1147 for (size_t ndx = 0; ndx < m_triangles.size(); ++ndx) in render()
1149 const std::string v0Properties = genClippingPointInfoString(m_triangles[ndx].v0); in render()
1150 const std::string v1Properties = genClippingPointInfoString(m_triangles[ndx].v1); in render()
1151 const std::string v2Properties = genClippingPointInfoString(m_triangles[ndx].v2); in render()
1153 … "\tv0 (x=" << m_triangles[ndx].v0.x() << "\ty=" << m_triangles[ndx].v0.y() << "\tz=" << m_triangl… in render()
1154 … "\tv1 (x=" << m_triangles[ndx].v1.x() << "\ty=" << m_triangles[ndx].v1.y() << "\tz=" << m_triangl… in render()
1155 … "\tv2 (x=" << m_triangles[ndx].v2.x() << "\ty=" << m_triangles[ndx].v2.y() << "\tz=" << m_triangl… in render()
1168 …ctx.vertexAttribPointer (positionLoc, 4, GL_FLOAT, GL_FALSE, sizeof(GLfloat[8]), &m_triangles[0]… in render()
1169 …ctx.vertexAttribPointer (colorLoc, 4, GL_FLOAT, GL_FALSE, sizeof(GLfloat[8]), &m_triangles[0].c… in render()
1170 ctx.drawArrays (GL_TRIANGLES, 0, verticesPerTriangle * (glw::GLsizei)m_triangles.size()); in render()
1203 m_triangles.push_back(triangle1); in QuadFillTest()
1211 m_triangles.push_back(triangle2); in QuadFillTest()
1302 m_triangles.push_back(triangle); in TriangleFanFillTest()