Initial work on background visualization

This commit is contained in:
Charles Magahern
2015-12-30 02:51:22 -08:00
parent 58529e96b9
commit 7cf2b3b38d
22 changed files with 762 additions and 129 deletions
+16
View File
@@ -0,0 +1,16 @@
//
// FinalRender.vsh
// XIONControlPanel
//
// Created by Charles Magahern on 12/29/15.
// Copyright © 2015 XION. All rights reserved.
//
attribute vec4 a_position;
varying vec2 v_uv;
void main()
{
v_uv = (a_position.xy + 1.0) * 0.5;
gl_Position = a_position;
}