Files
VEFontCache-Odin/backend/sokol/render_glyph.shdc.glsl
Ed_ d806fc6083 Correcting sokol-shdc naming...
@module doesn't work on all uniforms.. making it useless
2025-02-13 16:09:27 -05:00

22 lines
387 B
GLSL

// module naming rules are currently dumb with shdc rn...
// @module render_glyph
@header package ve_sokol
@header import sg "thirdparty:sokol/gfx"
@vs render_glyph_vs
@include ./source_shared.shdc.glsl
@end
@fs render_glyph_fs
in vec2 uv;
out vec4 frag_color;
void main()
{
frag_color = vec4( 1.0, 1.0, 1.0, 1.0 );
}
@end
@program ve_render_glyph render_glyph_vs render_glyph_fs