dep/reshadefx: Fix UBO reference with OpenGL

This commit is contained in:
Stenzek 2024-06-23 23:39:39 +10:00
parent 1797050f97
commit b8ed013ec3
No known key found for this signature in database

View file

@ -108,7 +108,7 @@ private:
}
else
{
preamble += "layout(std140, binding = 1) uniform _Globals {\n" + _ubo_block + "};\n";
preamble += "layout(std140, binding = 0) uniform _Globals {\n" + _ubo_block + "};\n";
}
}