2023-01-05 13:25:55 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* cluster_builder_rd.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/**************************************************************************/
|
2021-01-17 17:25:38 +01:00
|
|
|
|
|
|
|
#ifndef CLUSTER_BUILDER_RD_H
|
|
|
|
#define CLUSTER_BUILDER_RD_H
|
|
|
|
|
|
|
|
#include "servers/rendering/renderer_rd/shaders/cluster_debug.glsl.gen.h"
|
|
|
|
#include "servers/rendering/renderer_rd/shaders/cluster_render.glsl.gen.h"
|
|
|
|
#include "servers/rendering/renderer_rd/shaders/cluster_store.glsl.gen.h"
|
2022-06-21 02:08:33 +02:00
|
|
|
#include "servers/rendering/renderer_rd/storage_rd/material_storage.h"
|
2021-01-17 17:25:38 +01:00
|
|
|
|
|
|
|
class ClusterBuilderSharedDataRD {
|
|
|
|
friend class ClusterBuilderRD;
|
|
|
|
|
|
|
|
RID sphere_vertex_buffer;
|
|
|
|
RID sphere_vertex_array;
|
|
|
|
RID sphere_index_buffer;
|
|
|
|
RID sphere_index_array;
|
2023-01-24 01:08:32 +01:00
|
|
|
float sphere_overfit = 0.0; // Because an icosphere is not a perfect sphere, we need to enlarge it to cover the sphere area.
|
2021-01-17 17:25:38 +01:00
|
|
|
|
|
|
|
RID cone_vertex_buffer;
|
|
|
|
RID cone_vertex_array;
|
|
|
|
RID cone_index_buffer;
|
|
|
|
RID cone_index_array;
|
2023-01-24 01:08:32 +01:00
|
|
|
float cone_overfit = 0.0; // Because an cone mesh is not a perfect cone, we need to enlarge it to cover the actual cone area.
|
2021-01-17 17:25:38 +01:00
|
|
|
|
|
|
|
RID box_vertex_buffer;
|
|
|
|
RID box_vertex_array;
|
|
|
|
RID box_index_buffer;
|
|
|
|
RID box_index_array;
|
|
|
|
|
|
|
|
enum Divisor {
|
|
|
|
DIVISOR_1,
|
|
|
|
DIVISOR_2,
|
|
|
|
DIVISOR_4,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ClusterRender {
|
|
|
|
struct PushConstant {
|
|
|
|
uint32_t base_index;
|
|
|
|
uint32_t pad0;
|
|
|
|
uint32_t pad1;
|
|
|
|
uint32_t pad2;
|
|
|
|
};
|
|
|
|
|
|
|
|
ClusterRenderShaderRD cluster_render_shader;
|
|
|
|
RID shader_version;
|
|
|
|
RID shader;
|
2023-01-24 01:08:32 +01:00
|
|
|
|
2021-01-17 17:25:38 +01:00
|
|
|
enum PipelineVersion {
|
|
|
|
PIPELINE_NORMAL,
|
|
|
|
PIPELINE_MSAA,
|
|
|
|
PIPELINE_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
RID shader_pipelines[PIPELINE_MAX];
|
|
|
|
} cluster_render;
|
|
|
|
|
|
|
|
struct ClusterStore {
|
|
|
|
struct PushConstant {
|
|
|
|
uint32_t cluster_render_data_size; // how much data for a single cluster takes
|
2023-01-24 01:08:32 +01:00
|
|
|
uint32_t max_render_element_count_div_32; // divided by 32
|
2021-01-17 17:25:38 +01:00
|
|
|
uint32_t cluster_screen_size[2];
|
2023-01-24 01:08:32 +01:00
|
|
|
uint32_t render_element_count_div_32; // divided by 32
|
|
|
|
uint32_t max_cluster_element_count_div_32; // divided by 32
|
|
|
|
|
2021-01-17 17:25:38 +01:00
|
|
|
uint32_t pad1;
|
|
|
|
uint32_t pad2;
|
|
|
|
};
|
|
|
|
|
|
|
|
ClusterStoreShaderRD cluster_store_shader;
|
|
|
|
RID shader_version;
|
|
|
|
RID shader;
|
|
|
|
RID shader_pipeline;
|
|
|
|
} cluster_store;
|
|
|
|
|
|
|
|
struct ClusterDebug {
|
|
|
|
struct PushConstant {
|
|
|
|
uint32_t screen_size[2];
|
|
|
|
uint32_t cluster_screen_size[2];
|
|
|
|
|
|
|
|
uint32_t cluster_shift;
|
|
|
|
uint32_t cluster_type;
|
|
|
|
float z_near;
|
|
|
|
float z_far;
|
|
|
|
|
|
|
|
uint32_t orthogonal;
|
|
|
|
uint32_t max_cluster_element_count_div_32;
|
2023-01-24 01:08:32 +01:00
|
|
|
|
2021-01-17 17:25:38 +01:00
|
|
|
uint32_t pad1;
|
|
|
|
uint32_t pad2;
|
|
|
|
};
|
|
|
|
|
|
|
|
ClusterDebugShaderRD cluster_debug_shader;
|
|
|
|
RID shader_version;
|
|
|
|
RID shader;
|
|
|
|
RID shader_pipeline;
|
|
|
|
} cluster_debug;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ClusterBuilderSharedDataRD();
|
|
|
|
~ClusterBuilderSharedDataRD();
|
|
|
|
};
|
|
|
|
|
|
|
|
class ClusterBuilderRD {
|
|
|
|
public:
|
2023-01-24 01:08:32 +01:00
|
|
|
static constexpr float WIDE_SPOT_ANGLE_THRESHOLD_DEG = 60.0f;
|
|
|
|
|
2021-01-17 17:25:38 +01:00
|
|
|
enum LightType {
|
|
|
|
LIGHT_TYPE_OMNI,
|
|
|
|
LIGHT_TYPE_SPOT
|
|
|
|
};
|
|
|
|
|
|
|
|
enum BoxType {
|
|
|
|
BOX_TYPE_REFLECTION_PROBE,
|
|
|
|
BOX_TYPE_DECAL,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ElementType {
|
|
|
|
ELEMENT_TYPE_OMNI_LIGHT,
|
|
|
|
ELEMENT_TYPE_SPOT_LIGHT,
|
|
|
|
ELEMENT_TYPE_DECAL,
|
|
|
|
ELEMENT_TYPE_REFLECTION_PROBE,
|
|
|
|
ELEMENT_TYPE_MAX,
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
ClusterBuilderSharedDataRD *shared = nullptr;
|
|
|
|
|
|
|
|
struct RenderElementData {
|
2023-01-24 01:08:32 +01:00
|
|
|
uint32_t type; // 0-4
|
2021-01-17 17:25:38 +01:00
|
|
|
uint32_t touches_near;
|
|
|
|
uint32_t touches_far;
|
|
|
|
uint32_t original_index;
|
2023-01-24 01:08:32 +01:00
|
|
|
float transform_inv[12]; // Transposed transform for less space.
|
2021-01-17 17:25:38 +01:00
|
|
|
float scale[3];
|
2023-01-24 01:08:32 +01:00
|
|
|
uint32_t has_wide_spot_angle;
|
|
|
|
}; // Keep aligned to 32 bytes.
|
2021-01-17 17:25:38 +01:00
|
|
|
|
|
|
|
uint32_t cluster_count_by_type[ELEMENT_TYPE_MAX] = {};
|
|
|
|
uint32_t max_elements_by_type = 0;
|
|
|
|
|
|
|
|
RenderElementData *render_elements = nullptr;
|
|
|
|
uint32_t render_element_count = 0;
|
|
|
|
uint32_t render_element_max = 0;
|
|
|
|
|
2020-10-17 07:08:21 +02:00
|
|
|
Transform3D view_xform;
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-20 01:11:13 +02:00
|
|
|
Projection adjusted_projection;
|
|
|
|
Projection projection;
|
2021-01-17 17:25:38 +01:00
|
|
|
float z_far = 0;
|
|
|
|
float z_near = 0;
|
2023-01-24 01:08:32 +01:00
|
|
|
bool camera_orthogonal = false;
|
2021-01-17 17:25:38 +01:00
|
|
|
|
|
|
|
enum Divisor {
|
|
|
|
DIVISOR_1,
|
|
|
|
DIVISOR_2,
|
|
|
|
DIVISOR_4,
|
|
|
|
};
|
|
|
|
|
|
|
|
uint32_t cluster_size = 32;
|
|
|
|
bool use_msaa = true;
|
|
|
|
Divisor divisor = DIVISOR_4;
|
|
|
|
|
|
|
|
Size2i screen_size;
|
|
|
|
Size2i cluster_screen_size;
|
|
|
|
|
|
|
|
RID framebuffer;
|
2023-01-24 01:08:32 +01:00
|
|
|
RID cluster_render_buffer; // Used for creating.
|
|
|
|
RID cluster_buffer; // Used for rendering.
|
|
|
|
RID element_buffer; // Used for storing, to hint element touches far plane or near plane.
|
2021-01-17 17:25:38 +01:00
|
|
|
uint32_t cluster_render_buffer_size = 0;
|
|
|
|
uint32_t cluster_buffer_size = 0;
|
|
|
|
|
|
|
|
RID cluster_render_uniform_set;
|
|
|
|
RID cluster_store_uniform_set;
|
|
|
|
|
2023-01-24 01:08:32 +01:00
|
|
|
// Persistent data.
|
2021-01-17 17:25:38 +01:00
|
|
|
|
|
|
|
void _clear();
|
|
|
|
|
|
|
|
struct StateUniform {
|
|
|
|
float projection[16];
|
|
|
|
float inv_z_far;
|
2023-01-24 01:08:32 +01:00
|
|
|
uint32_t screen_to_clusters_shift; // Shift to obtain coordinates in block indices.
|
|
|
|
uint32_t cluster_screen_width;
|
|
|
|
uint32_t cluster_data_size; // How much data is needed for a single cluster.
|
2021-01-17 17:25:38 +01:00
|
|
|
uint32_t cluster_depth_offset;
|
2023-01-24 01:08:32 +01:00
|
|
|
|
2021-01-17 17:25:38 +01:00
|
|
|
uint32_t pad0;
|
|
|
|
uint32_t pad1;
|
|
|
|
uint32_t pad2;
|
|
|
|
};
|
|
|
|
|
|
|
|
RID state_uniform;
|
|
|
|
|
|
|
|
RID debug_uniform_set;
|
|
|
|
|
|
|
|
public:
|
|
|
|
void setup(Size2i p_screen_size, uint32_t p_max_elements, RID p_depth_buffer, RID p_depth_buffer_sampler, RID p_color_buffer);
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-20 01:11:13 +02:00
|
|
|
void begin(const Transform3D &p_view_transform, const Projection &p_cam_projection, bool p_flip_y);
|
2021-01-17 17:25:38 +01:00
|
|
|
|
2020-10-17 07:08:21 +02:00
|
|
|
_FORCE_INLINE_ void add_light(LightType p_type, const Transform3D &p_transform, float p_radius, float p_spot_aperture) {
|
2021-01-17 17:25:38 +01:00
|
|
|
if (p_type == LIGHT_TYPE_OMNI && cluster_count_by_type[ELEMENT_TYPE_OMNI_LIGHT] == max_elements_by_type) {
|
2023-01-24 01:08:32 +01:00
|
|
|
return; // Max number elements reached.
|
2021-01-17 17:25:38 +01:00
|
|
|
}
|
|
|
|
if (p_type == LIGHT_TYPE_SPOT && cluster_count_by_type[ELEMENT_TYPE_SPOT_LIGHT] == max_elements_by_type) {
|
2023-01-24 01:08:32 +01:00
|
|
|
return; // Max number elements reached.
|
2021-01-17 17:25:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
RenderElementData &e = render_elements[render_element_count];
|
|
|
|
|
2020-10-17 07:08:21 +02:00
|
|
|
Transform3D xform = view_xform * p_transform;
|
2021-01-17 17:25:38 +01:00
|
|
|
|
|
|
|
float radius = xform.basis.get_uniform_scale();
|
2021-07-26 14:19:53 +02:00
|
|
|
if (radius < 0.98 || radius > 1.02) {
|
2021-01-17 17:25:38 +01:00
|
|
|
xform.basis.orthonormalize();
|
|
|
|
}
|
|
|
|
|
|
|
|
radius *= p_radius;
|
|
|
|
|
|
|
|
if (p_type == LIGHT_TYPE_OMNI) {
|
2023-01-24 01:08:32 +01:00
|
|
|
radius *= shared->sphere_overfit; // Overfit icosphere.
|
2021-01-17 17:25:38 +01:00
|
|
|
|
|
|
|
float depth = -xform.origin.z;
|
2023-01-24 01:08:32 +01:00
|
|
|
if (camera_orthogonal) {
|
2021-01-17 17:25:38 +01:00
|
|
|
e.touches_near = (depth - radius) < z_near;
|
|
|
|
} else {
|
2023-01-24 01:08:32 +01:00
|
|
|
// Contains camera inside light.
|
|
|
|
float radius2 = radius * shared->sphere_overfit; // Overfit again for outer size (camera may be outside actual sphere but behind an icosphere vertex)
|
2021-01-17 17:25:38 +01:00
|
|
|
e.touches_near = xform.origin.length_squared() < radius2 * radius2;
|
|
|
|
}
|
|
|
|
|
|
|
|
e.touches_far = (depth + radius) > z_far;
|
|
|
|
e.scale[0] = radius;
|
|
|
|
e.scale[1] = radius;
|
|
|
|
e.scale[2] = radius;
|
|
|
|
e.type = ELEMENT_TYPE_OMNI_LIGHT;
|
|
|
|
e.original_index = cluster_count_by_type[ELEMENT_TYPE_OMNI_LIGHT];
|
|
|
|
|
2022-06-21 02:08:33 +02:00
|
|
|
RendererRD::MaterialStorage::store_transform_transposed_3x4(xform, e.transform_inv);
|
2021-01-17 17:25:38 +01:00
|
|
|
|
|
|
|
cluster_count_by_type[ELEMENT_TYPE_OMNI_LIGHT]++;
|
|
|
|
|
2023-01-24 01:08:32 +01:00
|
|
|
} else /*LIGHT_TYPE_SPOT */ {
|
|
|
|
radius *= shared->cone_overfit; // Overfit icosphere
|
2021-01-17 17:25:38 +01:00
|
|
|
|
2022-08-13 17:45:42 +02:00
|
|
|
real_t len = Math::tan(Math::deg_to_rad(p_spot_aperture)) * radius;
|
2023-01-24 01:08:32 +01:00
|
|
|
// Approximate, probably better to use a cone support function.
|
2021-01-17 17:25:38 +01:00
|
|
|
float max_d = -1e20;
|
|
|
|
float min_d = 1e20;
|
|
|
|
#define CONE_MINMAX(m_x, m_y) \
|
|
|
|
{ \
|
|
|
|
float d = -xform.xform(Vector3(len * m_x, len * m_y, -radius)).z; \
|
|
|
|
min_d = MIN(d, min_d); \
|
|
|
|
max_d = MAX(d, max_d); \
|
|
|
|
}
|
|
|
|
|
|
|
|
CONE_MINMAX(1, 1);
|
|
|
|
CONE_MINMAX(-1, 1);
|
|
|
|
CONE_MINMAX(-1, -1);
|
|
|
|
CONE_MINMAX(1, -1);
|
|
|
|
|
2023-01-24 01:08:32 +01:00
|
|
|
if (camera_orthogonal) {
|
2021-01-17 17:25:38 +01:00
|
|
|
e.touches_near = min_d < z_near;
|
|
|
|
} else {
|
2022-05-03 14:50:35 +02:00
|
|
|
Plane base_plane(-xform.basis.get_column(Vector3::AXIS_Z), xform.origin);
|
2021-01-17 17:25:38 +01:00
|
|
|
float dist = base_plane.distance_to(Vector3());
|
|
|
|
if (dist >= 0 && dist < radius) {
|
2023-01-24 01:08:32 +01:00
|
|
|
// Contains camera inside light, check angle.
|
2022-08-13 17:45:42 +02:00
|
|
|
float angle = Math::rad_to_deg(Math::acos((-xform.origin.normalized()).dot(-xform.basis.get_column(Vector3::AXIS_Z))));
|
2021-01-17 17:25:38 +01:00
|
|
|
e.touches_near = angle < p_spot_aperture * 1.05; //overfit aperture a little due to cone overfit
|
|
|
|
} else {
|
|
|
|
e.touches_near = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
e.touches_far = max_d > z_far;
|
|
|
|
|
2023-01-24 01:08:32 +01:00
|
|
|
// If the spot angle is above the threshold, use a sphere instead of a cone for building the clusters
|
|
|
|
// since the cone gets too flat/large (spot angle close to 90 degrees) or
|
|
|
|
// can't even cover the affected area of the light (spot angle above 90 degrees).
|
|
|
|
if (p_spot_aperture > WIDE_SPOT_ANGLE_THRESHOLD_DEG) {
|
|
|
|
e.scale[0] = radius;
|
|
|
|
e.scale[1] = radius;
|
|
|
|
e.scale[2] = radius;
|
|
|
|
e.has_wide_spot_angle = true;
|
|
|
|
} else {
|
|
|
|
e.scale[0] = len * shared->cone_overfit;
|
|
|
|
e.scale[1] = len * shared->cone_overfit;
|
|
|
|
e.scale[2] = radius;
|
|
|
|
e.has_wide_spot_angle = false;
|
|
|
|
}
|
2021-01-17 17:25:38 +01:00
|
|
|
|
|
|
|
e.type = ELEMENT_TYPE_SPOT_LIGHT;
|
2023-01-24 01:08:32 +01:00
|
|
|
e.original_index = cluster_count_by_type[ELEMENT_TYPE_SPOT_LIGHT]; // Use omni light since they share index.
|
2021-01-17 17:25:38 +01:00
|
|
|
|
2022-06-21 02:08:33 +02:00
|
|
|
RendererRD::MaterialStorage::store_transform_transposed_3x4(xform, e.transform_inv);
|
2021-01-17 17:25:38 +01:00
|
|
|
|
|
|
|
cluster_count_by_type[ELEMENT_TYPE_SPOT_LIGHT]++;
|
|
|
|
}
|
|
|
|
|
|
|
|
render_element_count++;
|
|
|
|
}
|
|
|
|
|
2022-07-12 09:43:01 +02:00
|
|
|
_FORCE_INLINE_ void add_box(BoxType p_box_type, const Transform3D &p_transform, const Vector3 &p_half_size) {
|
2021-01-17 17:25:38 +01:00
|
|
|
if (p_box_type == BOX_TYPE_DECAL && cluster_count_by_type[ELEMENT_TYPE_DECAL] == max_elements_by_type) {
|
2023-01-24 01:08:32 +01:00
|
|
|
return; // Max number elements reached.
|
2021-01-17 17:25:38 +01:00
|
|
|
}
|
|
|
|
if (p_box_type == BOX_TYPE_REFLECTION_PROBE && cluster_count_by_type[ELEMENT_TYPE_REFLECTION_PROBE] == max_elements_by_type) {
|
2023-01-24 01:08:32 +01:00
|
|
|
return; // Max number elements reached.
|
2021-01-17 17:25:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
RenderElementData &e = render_elements[render_element_count];
|
2020-10-17 07:08:21 +02:00
|
|
|
Transform3D xform = view_xform * p_transform;
|
2021-01-17 17:25:38 +01:00
|
|
|
|
2023-01-24 01:08:32 +01:00
|
|
|
// Extract scale and scale the matrix by it, makes things simpler.
|
2022-07-12 09:43:01 +02:00
|
|
|
Vector3 scale = p_half_size;
|
2021-01-17 17:25:38 +01:00
|
|
|
for (uint32_t i = 0; i < 3; i++) {
|
2022-04-25 00:07:35 +02:00
|
|
|
float s = xform.basis.rows[i].length();
|
2021-01-17 17:25:38 +01:00
|
|
|
scale[i] *= s;
|
2022-04-25 00:07:35 +02:00
|
|
|
xform.basis.rows[i] /= s;
|
2021-01-17 17:25:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
float box_depth = Math::abs(xform.basis.xform_inv(Vector3(0, 0, -1)).dot(scale));
|
|
|
|
float depth = -xform.origin.z;
|
|
|
|
|
2023-01-24 01:08:32 +01:00
|
|
|
if (camera_orthogonal) {
|
2021-01-17 17:25:38 +01:00
|
|
|
e.touches_near = depth - box_depth < z_near;
|
|
|
|
} else {
|
2023-01-24 01:08:32 +01:00
|
|
|
// Contains camera inside box.
|
2021-01-17 17:25:38 +01:00
|
|
|
Vector3 inside = xform.xform_inv(Vector3(0, 0, 0)).abs();
|
|
|
|
e.touches_near = inside.x < scale.x && inside.y < scale.y && inside.z < scale.z;
|
|
|
|
}
|
|
|
|
|
|
|
|
e.touches_far = depth + box_depth > z_far;
|
|
|
|
|
|
|
|
e.scale[0] = scale.x;
|
|
|
|
e.scale[1] = scale.y;
|
|
|
|
e.scale[2] = scale.z;
|
|
|
|
|
|
|
|
e.type = (p_box_type == BOX_TYPE_DECAL) ? ELEMENT_TYPE_DECAL : ELEMENT_TYPE_REFLECTION_PROBE;
|
|
|
|
e.original_index = cluster_count_by_type[e.type];
|
|
|
|
|
2022-06-21 02:08:33 +02:00
|
|
|
RendererRD::MaterialStorage::store_transform_transposed_3x4(xform, e.transform_inv);
|
2021-01-17 17:25:38 +01:00
|
|
|
|
|
|
|
cluster_count_by_type[e.type]++;
|
|
|
|
render_element_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void bake_cluster();
|
|
|
|
void debug(ElementType p_element);
|
|
|
|
|
|
|
|
RID get_cluster_buffer() const;
|
|
|
|
uint32_t get_cluster_size() const;
|
|
|
|
uint32_t get_max_cluster_elements() const;
|
|
|
|
|
|
|
|
void set_shared(ClusterBuilderSharedDataRD *p_shared);
|
|
|
|
|
|
|
|
ClusterBuilderRD();
|
|
|
|
~ClusterBuilderRD();
|
|
|
|
};
|
|
|
|
|
2022-07-23 23:41:51 +02:00
|
|
|
#endif // CLUSTER_BUILDER_RD_H
|