Initial work on background visualization
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user