mirror of
https://github.com/Cametendo/EMVs-Creative-coding.git
synced 2026-06-20 17:45:02 +02:00
add mc_kuwahara_shader
This commit is contained in:
11
mc_kuwahara_shader/shaders/final.vsh
Normal file
11
mc_kuwahara_shader/shaders/final.vsh
Normal file
@@ -0,0 +1,11 @@
|
||||
#version 150
|
||||
|
||||
in vec3 vaPosition;
|
||||
in vec2 vaUV0;
|
||||
|
||||
out vec2 texCoord;
|
||||
|
||||
void main() {
|
||||
gl_Position = vec4(vaPosition.xy * 2.0 - 1.0, 0.0, 1.0);
|
||||
texCoord = vaUV0;
|
||||
}
|
||||
Reference in New Issue
Block a user