2021-04-25 23:36:39 +02:00
#define LIGHT_BAKE_DISABLED 0
2021-11-26 17:47:37 +01:00
#define LIGHT_BAKE_STATIC 1
#define LIGHT_BAKE_DYNAMIC 2
2021-03-10 12:23:55 +01:00
struct LightData { //this structure needs to be as packed as possible
2021-08-11 02:50:28 +02:00
highp vec3 position;
2021-08-18 17:18:50 +02:00
highp float inv_radius;
2021-03-10 12:23:55 +01:00
2021-08-18 17:18:50 +02:00
mediump vec3 direction;
highp float size;
2021-03-10 12:23:55 +01:00
2021-08-18 17:18:50 +02:00
mediump vec3 color;
mediump float attenuation;
2021-03-10 12:23:55 +01:00
2021-08-18 17:18:50 +02:00
mediump float cone_attenuation;
mediump float cone_angle;
mediump float specular_amount;
2022-06-10 12:47:06 +02:00
mediump float shadow_opacity;
2021-03-10 12:23:55 +01:00
2021-08-11 02:50:28 +02:00
highp vec4 atlas_rect; // rect in the shadow atlas
highp mat4 shadow_matrix;
2021-08-18 17:18:50 +02:00
highp float shadow_bias;
highp float shadow_normal_bias;
highp float transmittance_bias;
highp float soft_shadow_size; // for spot, it's the size in uv coordinates of the light, for omni it's the span angle
highp float soft_shadow_scale; // scales the shadow kernel for blurrier shadows
2021-03-10 12:23:55 +01:00
uint mask;
2021-07-09 10:28:33 +02:00
mediump float volumetric_fog_energy;
2021-04-25 23:36:39 +02:00
uint bake_mode;
2021-08-11 02:50:28 +02:00
highp vec4 projector_rect; //projector rect in srgb decal atlas
2021-03-10 12:23:55 +01:00
};
#define REFLECTION_AMBIENT_DISABLED 0
#define REFLECTION_AMBIENT_ENVIRONMENT 1
#define REFLECTION_AMBIENT_COLOR 2
struct ReflectionData {
2021-08-18 17:18:50 +02:00
highp vec3 box_extents;
mediump float index;
highp vec3 box_offset;
2021-03-10 12:23:55 +01:00
uint mask;
2021-08-18 17:18:50 +02:00
mediump vec3 ambient; // ambient color
mediump float intensity;
2021-03-10 12:23:55 +01:00
bool exterior;
bool box_project;
uint ambient_mode;
2022-08-01 01:20:24 +02:00
float exposure_normalization;
2021-03-10 12:23:55 +01:00
//0-8 is intensity,8-9 is ambient, mode
2021-08-18 17:18:50 +02:00
highp mat4 local_matrix; // up to here for spot and omni, rest is for directional
2021-03-10 12:23:55 +01:00
// notes: for ambientblend, use distance to edge to blend between already existing global environment
};
struct DirectionalLightData {
2021-08-18 17:18:50 +02:00
mediump vec3 direction;
2022-08-01 01:20:24 +02:00
highp float energy; // needs to be highp to avoid NaNs being created with high energy values (i.e. when using physical light units and over-exposing the image)
2021-08-18 17:18:50 +02:00
mediump vec3 color;
mediump float size;
mediump float specular;
2021-03-10 12:23:55 +01:00
uint mask;
2021-08-18 17:18:50 +02:00
highp float softshadow_angle;
highp float soft_shadow_scale;
2021-03-10 12:23:55 +01:00
bool blend_splits;
2022-06-10 12:47:06 +02:00
mediump float shadow_opacity;
2021-08-18 17:18:50 +02:00
highp float fade_from;
highp float fade_to;
2021-04-25 23:36:39 +02:00
uvec2 pad;
uint bake_mode;
2021-07-09 10:28:33 +02:00
mediump float volumetric_fog_energy;
2021-08-18 17:18:50 +02:00
highp vec4 shadow_bias;
highp vec4 shadow_normal_bias;
highp vec4 shadow_transmittance_bias;
2021-08-11 02:50:28 +02:00
highp vec4 shadow_z_range;
highp vec4 shadow_range_begin;
2021-08-18 17:18:50 +02:00
highp vec4 shadow_split_offsets;
2021-08-11 02:50:28 +02:00
highp mat4 shadow_matrix1;
highp mat4 shadow_matrix2;
highp mat4 shadow_matrix3;
highp mat4 shadow_matrix4;
2021-08-18 17:18:50 +02:00
highp vec2 uv_scale1;
highp vec2 uv_scale2;
highp vec2 uv_scale3;
highp vec2 uv_scale4;
2021-03-10 12:23:55 +01:00
};