Skip to content

No support variables in global scope when converting es shader to msl #6

@Mee-gu

Description

@Mee-gu

Here is a simple fragment shader:

vec3 redColor = vec3(1.0, 0.0, 0.0);

vec3 getColor()
{
    return redColor;
}
void main(void) {
    vec3 color = getColor();
    gl_FragColor = vec4(color, 1.0);
}

When we use the global variable redColor in getColor() method, after translated it to metal shader language, all variables defined in global scope will be skipped. It will make redColor undefined in getColor() method in msl:
float3 getColor () { return redColor; }

It is a bit complicate and will take more time to fix the issues, thus we don't take this into account for the time being.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions