From 016ae0018fe4ca61cc251cf0cacee6757341707e Mon Sep 17 00:00:00 2001 From: assiduous Date: Wed, 5 Feb 2020 09:44:34 -0800 Subject: Added line strip topology --- Graphics/GraphicsEngine/interface/GraphicsTypes.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Graphics/GraphicsEngine') diff --git a/Graphics/GraphicsEngine/interface/GraphicsTypes.h b/Graphics/GraphicsEngine/interface/GraphicsTypes.h index 398358f8..1be9b101 100644 --- a/Graphics/GraphicsEngine/interface/GraphicsTypes.h +++ b/Graphics/GraphicsEngine/interface/GraphicsTypes.h @@ -942,6 +942,10 @@ DILIGENT_TYPED_ENUM(PRIMITIVE_TOPOLOGY, Uint8) /// D3D counterpart: D3D_PRIMITIVE_TOPOLOGY_LINELIST. OpenGL counterpart: GL_LINES. PRIMITIVE_TOPOLOGY_LINE_LIST, + /// Interpret the vertex data as a line strip.\n + /// D3D counterpart: D3D_PRIMITIVE_TOPOLOGY_LINESTRIP. OpenGL counterpart: GL_LINE_STRIP. + PRIMITIVE_TOPOLOGY_LINE_STRIP, + /// Interpret the vertex data as a list of one control point patches.\n /// D3D counterpart: D3D_PRIMITIVE_TOPOLOGY_1_CONTROL_POINT_PATCHLIST. OpenGL counterpart: GL_PATCHES. PRIMITIVE_TOPOLOGY_1_CONTROL_POINT_PATCHLIST, -- cgit v1.2.3