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:
parent
3a941167d1
commit
478b6c39bf
1 changed files with 2 additions and 2 deletions
|
|
@ -14,9 +14,9 @@
|
||||||
|
|
||||||
// We use a smaller noise kernel size on Android due to lower computational power
|
// We use a smaller noise kernel size on Android due to lower computational power
|
||||||
#if defined(__ANDROID__)
|
#if defined(__ANDROID__)
|
||||||
#define SSAO_NOISE_DIM 8
|
|
||||||
#else
|
|
||||||
#define SSAO_NOISE_DIM 4
|
#define SSAO_NOISE_DIM 4
|
||||||
|
#else
|
||||||
|
#define SSAO_NOISE_DIM 8
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
class VulkanExample : public VulkanExampleBase
|
class VulkanExample : public VulkanExampleBase
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue