mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
[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:
parent
2e21ca4b9a
commit
4d7f72948d
1 changed files with 1 additions and 1 deletions
|
@ -436,7 +436,7 @@
|
||||||
{
|
{
|
||||||
stageFlags = fragment;
|
stageFlags = fragment;
|
||||||
offset = 68;
|
offset = 68;
|
||||||
size = "3 * 4 + 2 * 4 * 4 + 4";
|
size = "3 * 4 + 2 * 4 * 4";
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue