Home
last modified time | relevance | path

Searched refs:va_points (Results 1 – 6 of 6) sorted by relevance

/dports/cad/gmsh/gmsh-4.9.2-source/Post/
H A DPView.cpp35 va_points = va_lines = va_triangles = va_vectors = va_ellipses = nullptr; in _init()
212 if(va_points) delete va_points; in deleteVertexArrays()
213 va_points = nullptr; in deleteVertexArrays()
391 if(va_points) mem += va_points->getMemoryInMb(); in getMemoryInMb()
H A DPViewVertexArrays.cpp320 p->va_points->add(&xyz[i0][0], &xyz[i0][1], &xyz[i0][2], &n, &color, nullptr, in addOutlinePoint()
339 p->va_points->add(&xyz[i0][0], &xyz[i0][1], &xyz[i0][2], &n, &col, nullptr, in addScalarPoint()
433 p->va_points->add(x2, y2, z2, &n, &color, nullptr, unique); in addScalarLine()
1535 p->va_points = new VertexArray(1, _estimateNumPoints(p)); in operator ()()
1548 p->va_points->finalize(); in operator ()()
1556 p->va_points->getNumVertices() + p->va_lines->getNumVertices() + in operator ()()
1559 p->va_points->getMemoryInMb() + p->va_lines->getMemoryInMb() + in operator ()()
1612 if(p->va_points) delete p->va_points; in fillVertexArray()
1613 p->va_points = new VertexArray(1, 100); in fillVertexArray()
1614 p->va_points->fromChar(length, bytes, swap); in fillVertexArray()
H A DPView.h156 VertexArray *va_points, *va_lines, *va_triangles, *va_vectors, *va_ellipses; variable
/dports/cad/gmsh/gmsh-4.9.2-source/Common/
H A DGmshRemote.cpp46 VertexArray *va[4] = {p->va_points, p->va_lines, p->va_triangles, in computeAndSendVertexArrays()
83 VertexArray *va[4] = {p->va_points, p->va_lines, p->va_triangles, in computeAndSendVertexArrays()
112 VertexArray *varrays[4] = {p->va_points, p->va_lines, p->va_triangles, in addToVertexArrays()
/dports/cad/gmsh/gmsh-4.9.2-source/Graphics/
H A DdrawPost.cpp540 drawArrays(_ctx, p, p->va_points, GL_POINTS, false); in operator ()()
/dports/cad/gmsh/gmsh-4.9.2-source/contrib/mobile/
H A DdrawContext.cpp398 drawArray(p->va_points, GL_POINTS, true); in drawPView()