Debuggin matrices in shader

any tips on determining if matrices are being uploaded with correct values?

what i have is this:

uniform mat4 transform[4];

void main(void)
{
	mat4 trans = gl_ModelViewProjectionMatrix * transform[0];
	
	gl_Position = trans * gl_Vertex;
	gl_FrontColor = weight;
}

i tried loading identity matrix in to all of the transform array, so my model should be at the same location as if the first line was:

mat4 trans = gl_ModelViewProjectionMatrix;

but when i multiply by transform[0] (which should be identity) i cant see me model any more.

Try writing each row of the matrix to the output color (and test a different row on each run)

ah okay so somehow my matrices arent being set, is there a way i can see if glUniformMatrix4fvARB has failed?

i tried calling “glGetError” and the error code i get back is 1281 : “invalid value”, what does this mean?

it seems not to like setting more than 1 matrix!
glUniformMatrix4fvARB works fine untill i use a count of more than 1?

even though its an array in my shader:
uniform mat4 transform[4];

any ideas why this would be happening?

glGetError() to test if the load failed…

Try posting the code that you use to determine the uniform location and uploading the uniform.

Also what card/driver etc…

uh you must have missed my edit (read my above post i edited)

also just read this:
“If the number of values specified by count would exceed the declared extent of the indicated uniform variable, a GL_INVALID_VALUE error is generated and the specified uniform variable will remain unchanged.”

but if i set a count of 2, and in my shader the size is 4 it still fails?

ps. i get the handle to the uniform param like this:

p.handle = glGetUniformLocationARB(program, “transform”);

 
static Matrix4 transforms[4];

glUniformMatrix4fvARB(handle, 4, false, (GLfloat*)transforms);
 

this will only work if i change 4 to 1 :-/

I’m willing to bet the shader compiler sees that you are not accessing the other matrices and is optimizing them out. From my understanding of the spec, if one array variable is used, they all have to be valid. This may be a bug. What card/driver?

radeon 9600xt driver v4.11

okay i found soem improvement. if i use the last transform in the array, it will allow me to set the transforms.

seems your right. it looks likes its optimising out the transforms array :-/

so i emailed the ATI guys about it. as what im trying to do is to have a dynamic branch so not all transforms will be accessed which may cause issues.

edit:
just got everything working. :slight_smile:
thx 4 your help.

Just found this in the spec:

Uniform xxx …
When loading N elements starting at an arbitrary position k in a uniform declared
as an array, elements k through k + N − 1 in the array will be replaced
with the new values. Values for any array element that exceeds the highest array
element index used, as reported by GetActiveUniform, will be ignored by the GL.

So it looks like a bug (or most likely ATI have not implemented the GL2.0 spec yet.)

This topic was automatically closed 183 days after the last reply. New replies are no longer allowed.