istereo2

annotate sdr/color.p.glsl @ 27:f0da8b2b61ec

removed iOS cpu restriction and bumped build number to 3 implemented android JNI calls to show/hide ads (untested)
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 05 Oct 2015 17:15:02 +0300
parents
children
rev   line source
nuclear@6 1 #ifdef GL_ES
nuclear@6 2 precision mediump float;
nuclear@6 3 #endif
nuclear@6 4
nuclear@6 5 varying vec4 vcolor;
nuclear@6 6
nuclear@6 7 void main()
nuclear@6 8 {
nuclear@6 9 gl_FragColor = vcolor;
nuclear@6 10 }