.. index:: pair: enum; PrimitiveType .. _doxid-namespace_e_e_1_1_graphics_1a3b791babec37e0fb1a203914840064a4: enum EE::Graphics::PrimitiveType ================================ The batch renderer and vertex buffer primitive types allowed .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include enum PrimitiveType { :target:`PRIMITIVE_POINTS` = 0x0000, :target:`PRIMITIVE_LINES` = 0x0001, :target:`PRIMITIVE_LINE_LOOP` = 0x0002, :target:`PRIMITIVE_LINE_STRIP` = 0x0003, :target:`PRIMITIVE_TRIANGLES` = 0x0004, :target:`PRIMITIVE_TRIANGLE_STRIP` = 0x0005, :target:`PRIMITIVE_TRIANGLE_FAN` = 0x0006, :target:`PRIMITIVE_QUADS` = 0x0007, :target:`PRIMITIVE_QUAD_STRIP` = 0x0008, :target:`PRIMITIVE_POLYGON` = 0x0009, };