Searched refs:m_points (Results 1 – 5 of 5) sorted by relevance
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/ |
D | esextcGeometryShaderAdjacencyTests.cpp | 338 test_data.m_grid->m_points = new AdjacencyGridPoint[test_data.m_grid->m_n_points]; in createGrid() 349 test_data.m_grid->m_points[nPoint].index = nPoint; in createGrid() 350 test_data.m_grid->m_points[nPoint].x = dx * static_cast<float>(x); in createGrid() 351 test_data.m_grid->m_points[nPoint].y = dy * static_cast<float>(y); in createGrid() 417 AdjacencyGridPoint* pointTL = test_data.m_grid->m_points + nPoint; in createGridLineSegments() 423 pointTR = test_data.m_grid->m_points + nPoint + 1; in createGridLineSegments() 424 pointBL = test_data.m_grid->m_points + m_grid_granulity + 1; in createGridLineSegments() 425 pointBR = test_data.m_grid->m_points + m_grid_granulity + 2; in createGridLineSegments() 489 AdjacencyGridPoint* pointPtr = test_data.m_grid->m_points + nPoint; in createGridLineSegments() 526 …test_data.m_grid->m_line_strip.m_points = new AdjacencyGridPoint[test_data.m_grid->m_line_strip.… in createGridLineStrip() [all …]
|
D | esextcGeometryShaderAdjacency.cpp | 38 : m_line_segments(0), m_points(0), m_triangles(0), m_n_points(0), m_n_segments(0), m_n_triangles(0) in AdjacencyGrid() 54 if (m_points) in ~AdjacencyGrid() 56 delete[] m_points; in ~AdjacencyGrid() 57 m_points = 0; in ~AdjacencyGrid() 70 AdjacencyGridStrip::AdjacencyGridStrip() : m_n_points(0), m_points(0) in AdjacencyGridStrip() 80 if (m_points) in ~AdjacencyGridStrip() 82 delete[] m_points; in ~AdjacencyGridStrip()
|
D | esextcGeometryShaderAdjacency.hpp | 232 AdjacencyGridPoint* m_points; member in glcts::AdjacencyGridStrip 259 AdjacencyGridPoint* m_points; member in glcts::AdjacencyGrid
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
D | es3fClippingTests.cpp | 492 const std::vector<tcu::Vec4> m_points; member in deqp::gles3::Functional::__anone22b75ac0111::PointCase 499 , m_points (pointsBegin, pointsEnd) in PointCase() 531 for (size_t ndx = 0; ndx < m_points.size(); ++ndx) in testRender() 533 << "\tx=" << m_points[ndx].x() in testRender() 534 << "\ty=" << m_points[ndx].y() in testRender() 535 << "\tz=" << m_points[ndx].z() in testRender() 536 << "\tw=" << m_points[ndx].w() in testRender() 537 << "\t" << genClippingPointInfoString(m_points[ndx]) in testRender() 555 ctx.vertexAttribPointer (positionLoc, 4, GL_FLOAT, GL_FALSE, 0, &m_points[0]); in testRender() 558 ctx.drawArrays (GL_POINTS, 0, (glw::GLsizei)m_points.size()); in testRender()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
D | es2fClippingTests.cpp | 489 const std::vector<tcu::Vec4> m_points; member in deqp::gles2::Functional::__anonf920cb4a0111::PointCase 496 , m_points (pointsBegin, pointsEnd) in PointCase() 528 for (size_t ndx = 0; ndx < m_points.size(); ++ndx) in testRender() 530 << "\tx=" << m_points[ndx].x() in testRender() 531 << "\ty=" << m_points[ndx].y() in testRender() 532 << "\tz=" << m_points[ndx].z() in testRender() 533 << "\tw=" << m_points[ndx].w() in testRender() 534 << "\t" << genClippingPointInfoString(m_points[ndx]) in testRender() 552 ctx.vertexAttribPointer (positionLoc, 4, GL_FLOAT, GL_FALSE, 0, &m_points[0]); in testRender() 555 ctx.drawArrays (GL_POINTS, 0, (glw::GLsizei)m_points.size()); in testRender()
|