Frag shaders prevent game launch.

    Joined
    Jul 23, 2013
    Messages
    14
    Reaction score
    0
    • Legacy Citizen 2
    • Legacy Citizen


    This is what happens after the launcher gets to 100% loaded. I have the atmospheric shaders set to none. At one point I even tried setting every mention of shader in settings.cfg to false. I also tried replacing the plasma.frag.glsl and plasma.vert.glsl with ones from a second download. As of right now I have the most recent version.
     
    Joined
    Jul 5, 2013
    Messages
    372
    Reaction score
    0
    Well, that\'s no wonder especially if you are using some new graphics card. That fragment is using deprecated type gl_TexCoord on line 11

    float x = abs(gl_TexCoord[0].x - 0.5) *1000.0;

    Texture coords should be passed as attributes. The problem is that some new cards are no longer supporting the old syntax, but attributes would work on all cards.

    I must add that there exists a compatibility layer for old syntax, that most other cards use. Not supporting compatibility layer is big mistake from manufacturer... What card is that \"crap\" anyway? :p