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
+15
View File
@@ -0,0 +1,15 @@
//
// FirstPass.fsh
// XIONControlPanel
//
// Created by Charles Magahern on 12/29/15.
// Copyright © 2015 XION. All rights reserved.
//
uniform sampler2D u_colorSampler;
varying vec2 v_uv;
void main()
{
gl_FragColor = texture2D(u_colorSampler, v_uv);
}