[vulkan] Correct alias g-buffer push-constants

For whatever reason, I had added an extra 4 bytes to the fragment
shader's push-constants. It took me a while to figure out why renderdoc
wouldn't stop complaining about me not writing enough data.
This commit is contained in:
Bill Currie 2022-11-15 09:28:34 +09:00
parent 2e21ca4b9a
commit 4d7f72948d

View file

@ -436,7 +436,7 @@
{
stageFlags = fragment;
offset = 68;
size = "3 * 4 + 2 * 4 * 4 + 4";
size = "3 * 4 + 2 * 4 * 4";
},
);
};