Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I try to color the fragments in my shader according to their position between highest and lowest vertex. Here are the shaders:

<script type="x-shader/x-vertex" id="vertexshader">

    uniform     float   span;

    attribute   float   displacement;

    varying     vec3    vNormal;
    varying     float   color_according_to_z;

                float   z_actual;

    void main() {
        vNormal = normal;

        vec3 newPosition = position + normal * vec3(0.0, 0.0, displacement);
        gl_Position = projectionMatrix * modelViewMatrix * vec4(newPosition, 1.0);

        z_actual = gl_Position.z + span / 2.0;
        color_according_to_z = 1.0 / span * z_actual;
    }

</script>

<script type="x-shader/x-fragment" id="fragmentshader">

    uniform     float   span;

    varying     float   color_according_to_z;

    void main()
    {
        gl_FragColor = vec4(color_according_to_z, 0.5, 0.5, 1.0);
    }

</script>

Here is my render function:

function render() {
    requestAnimationFrame(render);

    plane.rotation.x = global_x_rotation;
    plane.rotation.z = global_z_rotation;

    for(var i = attributes.displacement.value.length - 1; i >= 0; i--) {
        attributes.displacement.value[i] = attributes.displacement.value[i] - 0.5 + Math.random();
    };

    uniforms.lowest = attributes.displacement.value.min();
    uniforms.highest = attributes.displacement.value.max();
    uniforms.span = uniforms.highest - uniforms.lowest;

    attributes.displacement.needsUpdate = true;

    uniforms.lowest.needsUpdate = true;
    uniforms.highest.needsUpdate = true;
    uniforms.span.needsUpdate = true;

    renderer.render(scene, camera);
}

I change the displacement from frame to frame and the recalculate the span between the highest and the lowest vertices.

The final piece, how to paint a fragment according to it's position towards highest or lowest, I couldn't figure out yet.

Here is a jsfiddle with the mentioned code.

share|improve this question
Without trying your code it looks to me like you already have what you need. What are you seeing? Can you post a screenshot? – Rob Agar Feb 12 at 8:59
I made you a little screen recording: cl.ly/3I3D0D3l3C1Q. The vertices move just fine, but the coloring doesn't work. – ichbinadrian Feb 12 at 10:13
not sure if I want to open something called "shagging.mov" at work =O – Rob Agar Feb 12 at 10:14
Sorry for that one. I assure you it's only some (although pretty sexy) vertices moving around the screen. – ichbinadrian Feb 12 at 10:17
ok... so from the color it looks like the fragment shader is being executed just fine, but color_according_to_z is <= 0. Is it just an operator association thing? how about color_according_to_z = z_actual / span – Rob Agar Feb 12 at 10:22
show 2 more comments

1 Answer

up vote 1 down vote accepted

You have a several errors that I can see. Check for NaN's in your variables.

The shader logic looks OK, except it might not produce the color you want.

var max = -1.0e30;
var min = +1.0e30;
var x;
for(var i = attributes.displacement.value.length - 1; i >= 0; i--) {
    x = attributes.displacement.value[i] += - 0.5 + Math.random();
    if (x < min ) min = x;
    if (x > max ) max = x;
};

uniforms.lowest.value = min; // lowest.value !
uniforms.highest.value = max;
uniforms.span.value = max - min;

attributes.displacement.needsUpdate = true;

//uniforms.lowest.needsUpdate = true; // not needed for uniforms
//uniforms.highest.needsUpdate = true;
//uniforms.span.needsUpdate = true;

fiddle: http://jsfiddle.net/c2jry/2/

share|improve this answer
uniforms.span calculates just fine the last time I checked. Is there a particular reason you do it the way you stated here? – ichbinadrian Feb 12 at 10:47
You left off .value. -- span: { type: 'f', value: 0.0 } – WestLangley Feb 12 at 10:50
I certainly did. Thank you for pointing that one out. – ichbinadrian Feb 12 at 10:57
1  
jsfiddle.net/c2jry/1 You just need now to get your shader logic correct. That's your job :-) – WestLangley Feb 12 at 11:02
1  
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.