You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
596 B
Plaintext
22 lines
596 B
Plaintext
2 weeks ago
|
/******************************************************************************/
|
||
|
/*
|
||
|
Project - MudBun
|
||
|
Publisher - Long Bunny Labs
|
||
|
http://LongBunnyLabs.com
|
||
|
Author - Ming-Lun "Allen" Chou
|
||
|
http://AllenChou.net
|
||
|
*/
|
||
|
/******************************************************************************/
|
||
|
|
||
|
#ifndef MUDBUN_COMPUTE_COMMON
|
||
|
#define MUDBUN_COMPUTE_COMMON
|
||
|
|
||
|
#define MUDBUN_IS_COMPUTE_SHADER (1)
|
||
|
|
||
|
#define kThreadGroupExtent (4)
|
||
|
#define kThreadGroupSize (kThreadGroupExtent * kThreadGroupExtent * kThreadGroupExtent)
|
||
|
#define kClearThreadGroupSize (256)
|
||
|
|
||
|
#endif
|
||
|
|