I'm relatively new with shaders and I'm wondering if I'm doing anything wrong (shader wise or c++ code wise) Also wondering how I can test with GLEW the support I am using. This is my current GLEW check

GLEW_ARB_vertex_shader 
&& GLEW_ARB_fragment_shader 
&& GLEW_ARB_vertex_program 
&& GLEW_ARB_shader_objects

I have a simple set of shaders in GLSL that display a texture and light that texture with LIGHT0.

It works on my desktop (ATI card) and on my friends laptop (intel gfx card) but it does not work on my laptop (ATI mobility card) and not on my other friends laptop (ATI mobility card)

Here are the shaders:

texture.vert

varying vec3 normal, lightDir, eyeVec;
varying float att;

void main()
{
    normal = gl_NormalMatrix * gl_Normal;

    vec3 vVertex = vec3(gl_ModelViewMatrix * gl_Vertex);
    lightDir = vec3(gl_LightSource[0].position.xyz - vVertex);
    eyeVec = -vVertex;

    float d = length(lightDir);

    att = 1.0 / ( gl_LightSource[0].constantAttenuation + 
    (gl_LightSource[0].linearAttenuation*d) + 
    (gl_LightSource[0].quadraticAttenuation*d*d) );

    gl_Position = ftransform();

    gl_FrontColor = gl_Color;
    gl_TexCoord[0] = gl_TextureMatrix[0] * gl_MultiTexCoord0;
}

texture.frag

varying vec3 normal, lightDir, eyeVec;
varying float att;

uniform sampler2D tex;

void main (void)
{
    vec4 final_color =  (gl_FrontLightModelProduct.sceneColor * gl_FrontMaterial.ambient) + (gl_LightSource[0].ambient * gl_FrontMaterial.ambient) * att;

    vec3 N = normalize(normal);
    vec3 L = normalize(lightDir);

    float lambertTerm = dot(N,L);

    if(lambertTerm > 0.0)
    {
        final_color += gl_LightSource[0].diffuse * gl_FrontMaterial.diffuse * lambertTerm * att;

        vec3 E = normalize(eyeVec);
        vec3 R = reflect(-L, N);

        float specular = pow( max(dot(R, E), 0.0), gl_FrontMaterial.shininess );

        final_color += gl_LightSource[0].specular * gl_FrontMaterial.specular * specular * att; 
    }

    gl_FragColor = final_color;
    gl_FragColor *= texture2D(tex, gl_TexCoord[0].st);
}

I have GLEW and I have tried both the built in opengl shading program and the ARB one (no difference)

Below are my draw function and the loadTexture function it uses

void Entity::draw()
{
    glPushMatrix();
    {
        glEnableClientState(GL_VERTEX_ARRAY);

        glEnable(GL_TEXTURE_2D);
        glEnableClientState(GL_TEXTURE_COORD_ARRAY);

        // Cube is drawn at the bottom left edge
        glTranslatef(x + 0.5f, y, z + 0.5f);

        glTexCoordPointer(2, GL_FLOAT, 0, MurkCube::cubeTex);
        glNormalPointer(3, GL_FLOAT, MurkCube::cubeNormals);
        glVertexPointer(3, GL_FLOAT, 0, MurkCube::cube);

        loadTexture();

        glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
        glDrawArrays(GL_TRIANGLE_STRIP, 4, 4);
        glDrawArrays(GL_TRIANGLE_STRIP, 8, 4);
        glDrawArrays(GL_TRIANGLE_STRIP, 12, 4);
        glDrawArrays(GL_TRIANGLE_STRIP, 16, 4);
        glDrawArrays(GL_TRIANGLE_STRIP, 20, 4);

        shaderHandler->shaderStop(); // Calls glUseProgramObjectARB(0);

        glDisableClientState(GL_VERTEX_ARRAY);

        glDisableClientState(GL_TEXTURE_COORD_ARRAY);
        glDisable(GL_TEXTURE_2D);
    }
    glPopMatrix();
}

loadTexture

bool Entity::loadTexture()
{
    /* load an image file directly as a new OpenGL texture */

    if(texture == 0)
    {
        texture = SOIL_load_OGL_texture("wall.jpg", SOIL_LOAD_AUTO, SOIL_CREATE_NEW_ID,
                    SOIL_FLAG_MIPMAPS | SOIL_FLAG_INVERT_Y | SOIL_FLAG_NTSC_SAFE_RGB | SOIL_FLAG_COMPRESS_TO_DXT);

        if(texture == 0)
        {
            return false;
        }

        // Creates the shading program and links it
        shaderHandler->shaderInit();

        glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
        glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
    }

    shaderHandler->shaderUse(); // Calls glUseProgramObjectARB(program);
    GLint texLoc = glGetUniformLocationARB(shaderHandler->getProgram(), "tex");
    glUniform1iARB(texLoc, 0);

    glActiveTexture(GL_TEXTURE0);
    glBindTexture(GL_TEXTURE_2D, texture);

    return true;
}
link|improve this question

After you call glewinit() are you checking that you have the proper OpenGl version like if (!GLEW_VERSION_2_0) ? – Jesse Good Jan 12 at 14:45
1  
Yes, my machine supports 3.2 (although my specs online state support for only 2.0, so I'm not sure which I should trust) – Ólafur Waage Jan 12 at 14:57
1  
And again if it doesn't work, what does it do then? – Christian Rau Jan 12 at 14:59
Well, it doesn't only depend on what your machine supports, but also what your current driver for this machine supports. And if this machine is so new, why then use the old ARB versions of the shader functionality, instead of the core versions, which have been core since GL 2.0. – Christian Rau Jan 12 at 15:00
Ah sorry, Yes on my machine I can disable the linking of the shader to get the texture on the cubes, but if I enable it, i get a single brownish color (which I think is a color in the texture) over the whole cube. – Ólafur Waage Jan 12 at 15:01
show 5 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.