SDL_shader_tools
SDL_shader_tools copied to clipboard
Preprocessor should not change token boundaries (except when using ##)
See this example from the gnu cpp manual:
#define foo() bar
foo()baz
This should expand to bar baz.
Current sdl-shader-compiler -P expands it to barbaz.