I have the following GLSL code:

uniform mat3x3 rgb2xyz = mat3x3(
    vec3(DEFAULT_RGB2XYZ_XR, DEFAULT_RGB2XYZ_XG, DEFAULT_RGB2XYZ_XB),
    vec3(DEFAULT_RGB2XYZ_YR, DEFAULT_RGB2XYZ_YG, DEFAULT_RGB2XYZ_YB),
    vec3(DEFAULT_RGB2XYZ_ZR, DEFAULT_RGB2XYZ_ZG, DEFAULT_RGB2XYZ_ZB)
    );

vec3 RGBtoXYZ(vec3 rgb)
{
            // Works
    float X = DEFAULT_RGB2XYZ_XR * rgb.r + DEFAULT_RGB2XYZ_XG * rgb.g + DEFAULT_RGB2XYZ_XB * rgb.b;
    float Y = DEFAULT_RGB2XYZ_YR * rgb.r + DEFAULT_RGB2XYZ_YG * rgb.g + DEFAULT_RGB2XYZ_YB * rgb.b;
    float Z = DEFAULT_RGB2XYZ_ZR * rgb.r + DEFAULT_RGB2XYZ_ZG * rgb.g + DEFAULT_RGB2XYZ_ZB * rgb.b;
    return vec3(X, Y, Z);

            // Don't work
    /*float X = rgb2xyz[0][0] * rgb.r + rgb2xyz[0][1] * rgb.g + rgb2xyz[0][2] * rgb.b;
    float Y = rgb2xyz[1][0] * rgb.r + rgb2xyz[1][1] * rgb.g + rgb2xyz[1][2] * rgb.b;
    float Z = rgb2xyz[2][0] * rgb.r + rgb2xyz[2][1] * rgb.g + rgb2xyz[2][2] * rgb.b;
    return vec3(X, Y, Z);*/

            // Don't work
    /*return vec3(
        dot(rgb2xyz[0], rgb),
        dot(rgb2xyz[1], rgb),
        dot(rgb2xyz[2], rgb)
    );*/
}

The routine RGBtoXYZ have three code blocks (the last two commented). The first one work as expected, while the other commented ones does not work.

The problem is that I think they are equivalent. Why they are not?

link|improve this question

80% accept rate
You must give the definition of dot() as well. – phkahler Aug 23 '11 at 13:52
See the comments on your answer. However, here it is: float dot (genType x, genType y) – Luca Aug 23 '11 at 14:00
Matrices in GLSL are column-major, btw. – Nicol Bolas Aug 23 '11 at 17:48
@Nicol Bolas Doesn't my code follow colum-major convention? – Luca Aug 24 '11 at 8:17
@Luca: No. mat4[0] is the first column of the matrix. Unless you are left-multiplying a vector by the matrix, you don't dot-product the columns of a matrix with the vector. You MADD the columns with the vector. Because you're doing manual left multiplication on a transposed matrix, your math works out correctly. Also, you don't need to manually multiply a matrix with a vector; the * operator will do it for you. – Nicol Bolas Aug 24 '11 at 8:21
show 1 more comment
feedback

1 Answer

up vote 0 down vote accepted

I can't believe it!

The Paul-Jan edit has resolved my issue!

Simply the GLSL compiler do not emit error on matrix initialization! I can't believe it!


I'm curious of your comments here, I'm thinking to open another question on this issue.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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