We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 071d81f commit dfb553bCopy full SHA for dfb553b
examples_tests/39.DenoiserTonemapper/CommonPushConstants.h
@@ -9,9 +9,7 @@
9
#endif
10
struct CommonPushConstants
11
{
12
- uint inImageTexelOffset[3];
13
uint inImageTexelPitch[3];
14
- uint outImageOffset[3];
15
uint imageWidth;
16
17
examples_tests/39.DenoiserTonemapper/ShaderCommon.glsl
@@ -8,6 +8,8 @@ layout(local_size_x=COMPUTE_WG_SIZE) in;
8
layout(constant_id = 1) const uint EII_COLOR = 0u;
layout(constant_id = 2) const uint EII_ALBEDO = 1u;
layout(constant_id = 3) const uint EII_NORMAL = 2u;
+// layout(constant_id = 4) const uint EII_COUNT = 3u; // for now until @Crisspl fixes a bug with SPIRV-Cross usage
+#define EII_COUNT 3u
#include "./CommonPushConstants.h"
0 commit comments