summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngine
diff options
context:
space:
mode:
authorazhirnov <zh1dron@gmail.com>2020-08-19 16:05:48 +0000
committerazhirnov <zh1dron@gmail.com>2020-08-19 16:05:48 +0000
commitbdecaefe87db4ccfb8dc8700fb1bf23aff4b6a0d (patch)
treedd9d2191ea743af87b5f41abd5c2cf96917a5d5d /Graphics/GraphicsEngine
parentAdded root signature for DrawMeshIndirect, added some checks (diff)
downloadDiligentCore-bdecaefe87db4ccfb8dc8700fb1bf23aff4b6a0d.tar.gz
DiligentCore-bdecaefe87db4ccfb8dc8700fb1bf23aff4b6a0d.zip
minor fixes and formatting
Diffstat (limited to 'Graphics/GraphicsEngine')
-rw-r--r--Graphics/GraphicsEngine/interface/Constants.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Graphics/GraphicsEngine/interface/Constants.h b/Graphics/GraphicsEngine/interface/Constants.h
index 9fa70088..dfd17c45 100644
--- a/Graphics/GraphicsEngine/interface/Constants.h
+++ b/Graphics/GraphicsEngine/interface/Constants.h
@@ -38,7 +38,7 @@ DILIGENT_BEGIN_NAMESPACE(Diligent)
/// Maximum number of input buffer slots.
/// D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT == 32
-#define DILIGENT_MAX_BUFFER_SOLTS 32
+#define DILIGENT_MAX_BUFFER_SLOTS 32
/// Maximum number of simultaneous render targets.
#define DILIGENT_MAX_RENDER_TARGETS 8
@@ -46,7 +46,7 @@ DILIGENT_BEGIN_NAMESPACE(Diligent)
/// Maximum number of viewports.
#define DILIGENT_MAX_VIEWPORTS 16
-static const Uint32 MAX_BUFFER_SLOTS = DILIGENT_MAX_BUFFER_SOLTS;
+static const Uint32 MAX_BUFFER_SLOTS = DILIGENT_MAX_BUFFER_SLOTS;
static const Uint32 MAX_RENDER_TARGETS = DILIGENT_MAX_RENDER_TARGETS;
static const Uint32 MAX_VIEWPORTS = DILIGENT_MAX_VIEWPORTS;