Skip to content

Commit

Permalink
fix(gizmos): replace reserved keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
fallenatlas authored and RiscadoA committed Nov 14, 2023
1 parent 8404287 commit 1f9c9c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions engine/src/cubos/engine/gizmos/renderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ void GizmosRenderer::initIdPipeline()
uniform uint gizmo;
out uvec2 output;
out uvec2 identifier;
void main()
{
output.r = (gizmo >> 16U);
output.g = (gizmo & 65535U);
identifier.r = (gizmo >> 16U);
identifier.g = (gizmo & 65535U);
}
)");

Expand Down

0 comments on commit 1f9c9c4

Please sign in to comment.