New modules compiled
This commit is contained in:
9
build/shaders/ascope_graticule_text.vert
Normal file
9
build/shaders/ascope_graticule_text.vert
Normal file
@@ -0,0 +1,9 @@
|
||||
#version 330 core
|
||||
layout(location = 0) in vec2 aPos;
|
||||
layout(location = 1) in vec2 aUV;
|
||||
uniform float uYOffset;
|
||||
out vec2 vUV;
|
||||
void main() {
|
||||
gl_Position = vec4(aPos.x, aPos.y + uYOffset, 0.0, 1.0);
|
||||
vUV = aUV;
|
||||
}
|
||||
Reference in New Issue
Block a user