yum-archive/Tooner

A toon shader for Unity's BIRP.

git clone https://git.yummers.dev/yum-archive/Tooner

yumAdd SDF mode to decals8153762

master
271 B11 linesraw
1#ifndef __MACROS_INC
2#define __MACROS_INC
3
4// https://isocpp.org/wiki/faq/misc-technical-issues#macros-with-token-pasting
5#define _MERGE_IMPL(a,b) a##b
6#define MERGE(a,b) _MERGE_IMPL(a,b)
7
8#define _MERGE_IMPL(a,b,c) a##b##c
9#define MERGE(a,b,c) _MERGE_IMPL(a,b,c)
10
11#endif