Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //vertex
- attribute vec4 v_position;
- void main(){
- gl_Position = v_position;
- }
- //fragment
- precision mediump float;
- uniform vec4 fr_Color;
- void main() {
- gl_FragColor = fr_Color;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement