Transition to Framebuffer#blit

This commit is contained in:
Anuken
2020-06-10 21:07:21 -04:00
parent 6648a9ff1a
commit 2a9008f042
12 changed files with 25 additions and 28 deletions

View File

@@ -0,0 +1,9 @@
attribute vec4 a_position;
attribute vec2 a_texCoord0;
varying vec2 v_texCoord;
void main(){
v_texCoord = a_texCoord0;
gl_Position = a_position;
}