From f328fbefa9f2bc71efcb5481647ca6a8cc29041e Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Thu, 7 Oct 2021 14:16:06 +0200 Subject: [PATCH] Increase default UAV slots limit to 4 --- Source/Engine/Graphics/Config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Graphics/Config.h b/Source/Engine/Graphics/Config.h index 54004cdc0..ae74cb463 100644 --- a/Source/Engine/Graphics/Config.h +++ b/Source/Engine/Graphics/Config.h @@ -12,7 +12,7 @@ #define GPU_MAX_CB_BINDED 4 // Maximum amount of binded unordered access resources at the same time -#define GPU_MAX_UA_BINDED 2 +#define GPU_MAX_UA_BINDED 4 // Maximum amount of binded texture sampler resources at the same time #define GPU_MAX_SAMPLER_BINDED 16