From 3599de7eb8ad73b6a8a56179983739743fe22757 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Perrier Date: Sun, 16 May 2021 17:30:15 +0200 Subject: [PATCH] Fix revert indirect draw count. --- Source/Engine/GraphicsDevice/Null/GPUContextNull.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Engine/GraphicsDevice/Null/GPUContextNull.h b/Source/Engine/GraphicsDevice/Null/GPUContextNull.h index c15b26599..f45417976 100644 --- a/Source/Engine/GraphicsDevice/Null/GPUContextNull.h +++ b/Source/Engine/GraphicsDevice/Null/GPUContextNull.h @@ -132,11 +132,11 @@ public: { } - void DrawInstancedIndirect(GPUBuffer* bufferForArgs, uint32 offsetForArgs, uint32 drawCount = 1) override + void DrawInstancedIndirect(GPUBuffer* bufferForArgs, uint32 offsetForArgs) override { } - void DrawIndexedInstancedIndirect(GPUBuffer* bufferForArgs, uint32 offsetForArgs, uint32 drawCount = 1) override + void DrawIndexedInstancedIndirect(GPUBuffer* bufferForArgs, uint32 offsetForArgs) override { }