mirror of
https://github.com/overte-org/overte.git
synced 2025-06-17 16:00:20 +02:00
16 lines
278 B
Text
16 lines
278 B
Text
// glsl / C++ compatible source as interface for BloomApply
|
|
#ifdef __cplusplus
|
|
# define BA_VEC3 glm::vec3
|
|
#else
|
|
# define BA_VEC3 vec3
|
|
#endif
|
|
|
|
struct Parameters
|
|
{
|
|
BA_VEC3 _intensities;
|
|
};
|
|
|
|
// <@if 1@>
|
|
// Trigger Scribe include
|
|
// <@endif@> <!def that !>
|
|
//
|