more shader things that needs multiplatform investigation

This commit is contained in:
minjaesong
2023-02-28 16:57:33 +09:00
parent f0b1d7f1bd
commit 8d7a62f796
5 changed files with 61 additions and 112 deletions

View File

@@ -0,0 +1,13 @@
#version 150
#ifdef GL_ES
precision mediump float;
#endif
in vec4 v_col;
out vec4 fragColor;
void main() {
fragColor = v_col;
}