///////////////////////////////////////////////////////
| 162 | |
| 163 | //////////////////////////////////////////////////////////// |
| 164 | void VertexArray::draw(RenderTarget& target, RenderStates states) const |
| 165 | { |
| 166 | if (!m_vertices.empty()) |
| 167 | target.draw(m_vertices.data(), m_vertices.size(), m_primitiveType, states); |
| 168 | } |
| 169 | |
| 170 | } // namespace sf |
nothing calls this directly
no outgoing calls
no test coverage detected