Loading image inside shader callback

You are an experienced programmer and have a problem with the engine, shaders, or advanced effects? Here you'll get answers.
No questions about C++ programming or topics which are answered in the tutorials!
Post Reply
Auradrummer
Posts: 260
Joined: Thu Apr 17, 2008 1:38 pm
Location: Brasopolis - Brazil

Loading image inside shader callback

Post by Auradrummer »

Hello guys,

Can I load an image inside shader callback, and not use a material Layer?

If yes, this can save one layer to me use the 4 layers to another thing?

I thought the following:
All my cars will have the same reflection image, so I could load it directly in the callback and use the cars material layers for another thing....

Thanks
Professional Software Developer and Amateur Game Designer ;-)
TCM
Posts: 53
Joined: Mon May 24, 2010 9:29 pm

Post by TCM »

The shader callback is called every frame. Loading a picture (texure) takes quite a lot of time.

In a shader callback you typically do not load anything, just send data to the uniform variables.
Auradrummer
Posts: 260
Joined: Thu Apr 17, 2008 1:38 pm
Location: Brasopolis - Brazil

Post by Auradrummer »

Uhmmm.... thats make sense...

But, could I send a texture for the shader that not is attached to the object?

Like a global variable.

Thanks
Professional Software Developer and Amateur Game Designer ;-)
ent1ty
Competition winner
Posts: 1106
Joined: Sun Nov 08, 2009 11:09 am

Post by ent1ty »

I don't think so

Unless you send the color of the texels as an array of floats(insane)

If you need more textures per material(up to 8), change the define in the irrlicht compile config and recompile irrlicht
irrRenderer 1.0
Height2Normal v. 2.1 - convert height maps to normal maps

Step back! I have a void pointer, and I'm not afraid to use it!
Auradrummer
Posts: 260
Joined: Thu Apr 17, 2008 1:38 pm
Location: Brasopolis - Brazil

Post by Auradrummer »

AHa!

Thank you guys!
Professional Software Developer and Amateur Game Designer ;-)
Post Reply