29 lines
694 B
HLSL
29 lines
694 B
HLSL
![]() |
/*****************************************************************************/
|
|||
|
/*
|
|||
|
Project - MudBun
|
|||
|
Publisher - Long Bunny Labs
|
|||
|
http://LongBunnyLabs.com
|
|||
|
Author - Ming-Lun "Allen" Chou
|
|||
|
http://AllenChou.net
|
|||
|
*/
|
|||
|
/******************************************************************************/
|
|||
|
|
|||
|
#ifndef MUDBUN_BRUSH_MASK_DEFS
|
|||
|
#define MUDBUN_BRUSH_MASK_DEFS
|
|||
|
|
|||
|
#define kBitsPerInt (32u)
|
|||
|
#define kMaxBrushMaskInts (32u)
|
|||
|
#define kiEmptyBrushMask (-1)
|
|||
|
#define BRUSH_MASK(mask) uint mask[kMaxBrushMaskInts]
|
|||
|
|
|||
|
#ifdef MUDBUN_IS_COMPUTE_SHADER
|
|||
|
RWStructuredBuffer<uint> brushMaskPool;
|
|||
|
#else
|
|||
|
StructuredBuffer<uint> brushMaskPool;
|
|||
|
#endif
|
|||
|
|
|||
|
int brushMaskPoolSize;
|
|||
|
|
|||
|
#endif
|
|||
|
|