Photon Common Library 2.0.0-beta
A physically based renderer.
Loading...
Searching...
No Matches
macro.h
Go to the documentation of this file.
1#pragma once
2
8#define PH_CONCAT_2(a, b) a##b
9#define PH_CONCAT_3(a, b, c) a##b##c
10#define PH_CONCAT_4(a, b, c, d) a##b##c##d
11#define PH_CONCAT_5(a, b, c, d, e) a##b##c##d##e
12#define PH_CONCAT_6(a, b, c, d, e, f) a##b##c##d##e##f
13#define PH_CONCAT_7(a, b, c, d, e, f, g) a##b##c##d##e##f##g
14#define PH_CONCAT_8(a, b, c, d, e, f, g, h) a##b##c##d##e##f##g##h
15
20#define PH_NO_OP() ((void)0)