Fix SSAO_NOISE_DIM for android (#1121)

Comment states that it should be "smaller", but its the opposite I think
This commit is contained in:
Vovan675 2024-05-15 09:52:31 -07:00 committed by GitHub
parent 3a941167d1
commit 478b6c39bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,9 +14,9 @@
// We use a smaller noise kernel size on Android due to lower computational power
#if defined(__ANDROID__)
#define SSAO_NOISE_DIM 8
#else
#define SSAO_NOISE_DIM 4
#else
#define SSAO_NOISE_DIM 8
#endif
class VulkanExample : public VulkanExampleBase