Problem of blending texture colors with lighting.

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
Andrey01
Posts: 62
Joined: Mon Jul 27, 2020 9:08 pm

Problem of blending texture colors with lighting.

Post by Andrey01 »

I've written a lighting shader (vertex and fragment ones) based on phong-model. My shader calculates ambient, diffuse and specular light components, taking into account the attenuation of lights with distance also. My scene has the one mesh node (table) having three materials with different textures and two point light sources radiating light from the fixed positions. My problem is that the light on that table is not blended with its textures, and total textures look just monotonous:
Image

How my textures look like:
Image

Image

What do I do here wrong? I also tried to multiply gl_Color with the total color (I use GLSL 1.1), but that only did the model look like fully dark.

Code and media for downloading:
https://drive.google.com/file/d/1emnIq8 ... drive_link
CuteAlien
Admin
Posts: 9843
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Re: Problem of blending texture colors with lighting.

Post by CuteAlien »

You need to give access to the link (edit: works now). But my very first guess from just seeing the image and no further info would be bad uv's. Looks like you might only use a single pixel from the texture. To test you can put some really strange colors on all 4 corner pixels of your texture and see if you get one of those.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
CuteAlien
Admin
Posts: 9843
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Re: Problem of blending texture colors with lighting.

Post by CuteAlien »

You have to set the gl_TexCoord[0] in the vertex shader to pass it on to the pixel shader.
In lighting.vert add the following line:

Code: Select all

gl_TexCoord[0] = gl_MultiTexCoord0;
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Andrey01
Posts: 62
Joined: Mon Jul 27, 2020 9:08 pm

Re: Problem of blending texture colors with lighting.

Post by Andrey01 »

Yes, that really solved my problem! Thanks!
Image
CuteAlien
Admin
Posts: 9843
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Re: Problem of blending texture colors with lighting.

Post by CuteAlien »

Nice. I noticed while looking at my shaders that I don't use gl_TexCoord but a custom varying variable. It seems gl_TexCoord was deprecated after version 1.2. So if you want to use ES2 or any newer shader version you should probably no longer use gl_TexCoord either.
For example in many shaders your first line will be something like: #version 430 compatibility
That allows you to access newer shader functionality, but variables like this one will no longer be there.

And if you need more examples in Irrlicht, check out the media/Shaders folder in the ogl-es branch of Irrlicht. Thought it only does vertex lighting I think (as it just tries to emulate old fixed-function pipeline).
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Andrey01
Posts: 62
Joined: Mon Jul 27, 2020 9:08 pm

Re: Problem of blending texture colors with lighting.

Post by Andrey01 »

CuteAlien wrote: Mon Jul 10, 2023 10:37 am Nice. I noticed while looking at my shaders that I don't use gl_TexCoord but a custom varying variable. It seems gl_TexCoord was deprecated after version 1.2. So if you want to use ES2 or any newer shader version you should probably no longer use gl_TexCoord either.
For example in many shaders your first line will be something like: #version 430 compatibility
That allows you to access newer shader functionality, but variables like this one will no longer be there.

And if you need more examples in Irrlicht, check out the media/Shaders folder in the ogl-es branch of Irrlicht. Thought it only does vertex lighting I think (as it just tries to emulate old fixed-function pipeline).
Yes, I know that varyable is deprecated and even was deleted in 3.3 afaik. My reason why I selected 1.1 for shaders is I don't know how to pass varying varyables from OnSetConstants() to them. IMaterialRendererServices has methods setting only contants (uniforms), but like not varying.

Also, I suppose does GLSL 1.1 not support multiple render targets for that reason there is the only output (gl_FragColor) in the fragment shader? It would be useful to me for implementation of the bloom effect.
CuteAlien
Admin
Posts: 9843
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Re: Problem of blending texture colors with lighting.

Post by CuteAlien »

gl_MultiTexCoord0 is still used even in newer GLSL. So the difference with newer shader is basically that you create a varying in your vertex shader and copy it into that one instead of into gl_TexCoord as above. And well, in newer glsl there is also no longer "varying" - it's now "out" in vertex shader and "in" in pixel shader.

MRT's... hm, would have to look up, not sure right now if I have an example for those. None in Irrlicht examples. Maybe search forum, I'm pretty sure I've seen it discussed once. But in theory you should be able to use glFragData[0] and glFragData[1] to write different values to different render targets.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Post Reply