simplification/taylorization and fix
[vulkan-misc.git] / 2d / blit / NAMESPACE
blob882b583c758c1df6155b2dba379c9a9cb24b25df
1 C preprocessor namespace is a very cheap tradeoff which allows the identifier
2 space to grow to very large and stay sane. 
4 we partition the identifier space in order to avoid-ish collisions in a
5 reasonable way, that with a bit of noise: 
6  - composite types (non primivitive types): _t suffix.
7  - "shared" variables, which are actually in the global/top C identifier space: _g
8    suffix.
9  - could add a _c suffix to compiler constants, aka "enums". should
10    not be that usefull though.