SpiecsEngine
 
Loading...
Searching...
No Matches

◆ DescriptorSetCombineBits

DescriptorSetCombine types.

Enumerator
None 
PreRenderer 
ThisRenderer 
Material 
Max 
ALL 

Definition at line 27 of file DescriptorSetManager.h.

28 {
29 None = 0, /* @brief None Combination. */
30 PreRenderer = 1 << 0, /* @brief Combination with PreRenderer. */
31 ThisRenderer = 1 << 1, /* @brief Combination with this Renderer. */
32 Material = 1 << 2, /* @brief Combination with material.(not inuse) */
33 Max = 3, /* @brief Combination count. */
34 ALL = 0xFFFFFFFF, /* @brief Combination with all. */
35 };