Fix ellipsoids in simulation
[clouds.git] / billboardfrag.glsl
index 94d15dcb2f1e477e90ed7cba724dedfcc4f49308..16e074e616aae9ea8101b38a11564982e249c894 100644 (file)
@@ -4,7 +4,13 @@ uniform sampler2D tex;
 in vec2 texCoord;
 out vec4 FragColor;
 uniform bool modulate;
+uniform bool debug;
+uniform float debugVal;
 void main() {
+  if (debug) {
+    FragColor = mix(vec4(1, 1, 1, 1), vec4(1, 0, 0, 1), debugVal);
+    return;
+  }
        // Cf = color from fragment, Ct = color from texture
        // Cc = color from texture environment -- not set, defaults to (0,0,0,0)
        // Af = alpha from fragment, At = alpha from texture