Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error parsing macro expression with field access #12

Open
deanm opened this issue Nov 13, 2016 · 1 comment
Open

Error parsing macro expression with field access #12

deanm opened this issue Nov 13, 2016 · 1 comment

Comments

@deanm
Copy link

deanm commented Nov 13, 2016

#define CLAMP01(x) clamp(x, 0.0, 1.0)

float x = CLAMP01(a - b);

Compiles fine, but:

#define CLAMP01(x) clamp(x, 0.0, 1.0)

float x = CLAMP01(a - b.x);

Results in a syntax error

@haxiomic
Copy link
Owner

haxiomic commented Nov 13, 2016

Thanks for the report, seems to be caused triggered when the field access name is the same as the macro argument

#define CLAMP01(cat) clamp(cat, 0.0, 1.0)

float x = CLAMP01(a.y - b.cat);

now if we do anything except b.cat it will process correctly

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants