1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-24 15:26:15 +00:00

Merge pull request #44842 from clayjohn/VULKAN-SSAO-2

SSAO renames and move push constant binding
This commit is contained in:
Rémi Verschelde
2021-01-04 23:03:54 +01:00
committed by GitHub
5 changed files with 39 additions and 30 deletions

View File

@@ -88,7 +88,7 @@ counter;
layout(rg8, set = 2, binding = 0) uniform restrict writeonly image2D dest_image;
// This push_constant is full - 128 bytes - if you need to add more data, consider adding to the uniform buffer instead
layout(push_constant, binding = 1, std430) uniform Params {
layout(push_constant, binding = 3, std430) uniform Params {
ivec2 screen_size;
int pass;
int quality;