Hardware skinning bug

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
RdR
Competition winner
Posts: 273
Joined: Tue Mar 29, 2011 2:58 pm
Contact:

Hardware skinning bug

Post by RdR »

Hello,

Since I updated my AMD drivers to the latest stable version, my hardware skinning is broken.
Nothing has changed in my code what so ever.

OpenGL version:
Previous: 6.14.10.12002
Current: 6.14.10.12217

I'm using the shader-pipeline branch.
REDDemon
Developer
Posts: 1044
Joined: Tue Aug 31, 2010 8:06 pm
Location: Genova (Italy)

Re: Hardware skinning bug

Post by REDDemon »

try to put a version define in the shader to tell the shader compiler a specific older version. it may work
Junior Irrlicht Developer.
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
RdR
Competition winner
Posts: 273
Joined: Tue Mar 29, 2011 2:58 pm
Contact:

Re: Hardware skinning bug

Post by RdR »

REDDemon wrote:try to put a version define in the shader to tell the shader compiler a specific older version. it may work
Do you have an example how to do this?
Nadro
Posts: 1648
Joined: Sun Feb 19, 2006 9:08 am
Location: Warsaw, Poland

Re: Hardware skinning bug

Post by Nadro »

Open your GLSL shader and add eg:
"#version 120" at the first line of the shader file.
Library helping with network requests, tasks management, logger etc in desktop and mobile apps: https://github.com/GrupaPracuj/hermes
RdR
Competition winner
Posts: 273
Joined: Tue Mar 29, 2011 2:58 pm
Contact:

Re: Hardware skinning bug

Post by RdR »

Nadro wrote:Open your GLSL shader and add eg:
"#version 120" at the first line of the shader file.
unfortunately that did not solve my problem. Any other suggestions?
hendu
Posts: 2600
Joined: Sat Dec 18, 2010 12:53 pm

Re: Hardware skinning bug

Post by hendu »

Complain to AMD. Why are you asking us when you know exactly what driver version broke it?
Nadro
Posts: 1648
Joined: Sun Feb 19, 2006 9:08 am
Location: Warsaw, Poland

Re: Hardware skinning bug

Post by Nadro »

As I remember 13.4 has got some problems related to OGL 3.3 implementation (maybe also older OGL versions are affected by this issue). Please update drivers to the latest BETA, it should solve your problem.
Library helping with network requests, tasks management, logger etc in desktop and mobile apps: https://github.com/GrupaPracuj/hermes
Post Reply