mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-22 19:34:20 +02: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 !>
|
|
//
|