I have an issue I don't understand.

I have a shader

String[] vsSource = new String[] {
        "attribute vec3 aVertex;",
        "attribute vec3 aColor;",

        "uniform mat4 uMVMatrix;",
        "uniform mat4 uPMatrix;",

        "varying vec3 vColor;",

        "void main(void) {",
        "    vColor = aColor;",
        "    gl_Position = uMVMatrix * uPMatrix * vec4(aVertex, 1.0);",
        "}" };

I set both matrices uMVMatrix and uPMatrix and I want to multiply them in the shader. When I try that, my screen stay black.

When I multiply it in Java and pass it to one mat4 variable, I see my triangle.

String[] vsSource = new String[] {
        "attribute vec3 aVertex;",
        "attribute vec3 aColor;",
        "uniform mat4 mvpMatrix;",

        "varying vec3 vColor;",

        "void main(void) {",
        "    vColor = aColor;",
        "    gl_Position = mvpMatrix * vec4(aVertex, 1.0);",
        "}" };

Can someone tell me why I can't multiply them in the shader?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Try inverting the order of the matrices in the shader, i.e.

gl_Position = uPMatrix * uMVMatrix * vec4(aVertex, 1.0);
link|improve this answer
did the trick... I thought that multiply is commutative!? Anyway thanks! – WarrenFaith Jan 26 '11 at 16:09
2  
Matrix multiplication is (in general) not commutative. Glad to hear it worked. – bosmacs Jan 26 '11 at 16:15
feedback

Your Answer

 
or
required, but never shown

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