Skip to content

Commit

Permalink
name change
Browse files Browse the repository at this point in the history
  • Loading branch information
Calendis committed Jun 5, 2024
1 parent dfd9e5d commit 6038fee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions magician/paint/shaders/default.v.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
layout (location = 0) in vec3 pos;
layout (location = 1) in vec4 rgba;

out vec4 outRgba;
out vec4 rgba2;

uniform mat4 view;
uniform mat4 proj;

void main()
{
gl_Position = proj*view*vec4(pos, 1.0);
outRgba = rgba;
rgba2 = rgba;
}

0 comments on commit 6038fee

Please sign in to comment.