This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/gpu/shaders/gpu_shader_text_vert.glsl
Mike Erwin d3365c5c72 OpenGL: fix GPU_SHADER_TEXT on non-Mac
Developed on Mac and committed quickly.. oops
2016-09-20 16:13:01 +02:00

21 lines
389 B
GLSL

// TODO(merwin):
// - uniform color, not per vertex
// - generic attrib inputs (2D pos, tex coord)
#if __VERSION__ == 120
flat varying vec4 color;
noperspective varying vec2 texcoord;
#else
flat out vec4 color;
noperspective out vec2 texcoord;
#endif
void main()
{
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
color = gl_Color;
texcoord = gl_MultiTexCoord0.st;
}