mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
18 lines
322 B
Text
18 lines
322 B
Text
// glsl / C++ compatible source as interface for BloomThreshold
|
|
#ifdef __cplusplus
|
|
# define BT_VEC2 glm::vec2
|
|
#else
|
|
# define BT_VEC2 vec2
|
|
#endif
|
|
|
|
struct Parameters
|
|
{
|
|
BT_VEC2 _deltaUV;
|
|
float _threshold;
|
|
int _sampleCount;
|
|
};
|
|
|
|
// <@if 1@>
|
|
// Trigger Scribe include
|
|
// <@endif@> <!def that !>
|
|
//
|