krauthaufen/FShade

Tuples do not compile on AMD

Closed this issue · 1 comments

The AMD compiler does not like typenames like "tup_vec3_8__int"

#version 410
#define __SHADER_STAGE__


struct tup_vec3_8__int
{
    vec3[8] e0;
    int e1;
};

tup_vec3_8__int tup_vec3_8__int_ctor(vec3[8] e0, int e1)
{
    tup_vec3_8__int result;
    result.e0 = e0;
    result.e1 = e1;
    return result;
}

uniform Global
{
...

Vertex:
Vertex shader failed to compile with the following errors:
ERROR: 0:5: error(#168) Reserved built-in name: tup_vec3_8__int
ERROR: 0:11: error(#132) Syntax error: "tup_vec3_8__int" parse error
ERROR: error(#273) 2 compilation errors. No code generated

PS: Code compiles after replacing "tup_vec3_8__int" with "myTupFOOOO"

fixed by commit 742c1b6