SFML community forums

Bindings - other languages => C => Topic started by: MOP on November 01, 2017, 10:23:10 pm

Title: Shader set a Float Uniforms causes to Crash
Post by: MOP on November 01, 2017, 10:23:10 pm
Hello folks,

iam currently working on my Snake Project, actually trying to implement some Item Stuff. I applied for every Item(Food, Speedups, Healthups) a file, which contains simplify a Struct. In this Struct are some propertys saved and Path Names to Shader and Textures. For every Item i load Stuff.

Actually i have the Problem, if i "out-comment" this line here:
(in CSFMLGameClock.c)
Code: [Select]
// Set GameTime to Item Shaders
    if(GameItem.GI_Is_Init)
    {
        size_t it;
        for(it = 0; it<GameItem.GI_Items_Count; it++)
        {
            if(GameItem.GI_Coordinates_Setted[it] && GameItem.GI_Placed[it])
            {
                //sfShader_setFloatUniform(GameItem.GI_Shaders[it], "Time", GameClock.GC_Time); // <- This
            }
        }
    }

On Start, it works fine, if i move my Snake then with a key, it directly lead to a crash. Iam not sure, where's the problem. Maybe you can give me some tip.
If it outcommentated, it works fine.

I applied fast a github repo, if you want to see the full code.
You can see it here: https://github.com/MasterOfPenetrator/SnakeGame

Greetz
Title: Re: Shader set a Float Uniforms causes to Crash
Post by: eXpl0it3r on November 02, 2017, 12:42:30 am
Use a debugger and inspect the values and stack trace when the game crashes.
Title: Re: Shader set a Float Uniforms causes to Crash
Post by: MOP on November 03, 2017, 08:43:05 am
I did this. But in the Debugger it doesn't crash :o

I found another way to check the problem. I found it and resolve it.

My shader array of pointers got a bug, element 0 and element 1 got the same pointer address, which cause to segmentation fault.