2019-06-22 16:34:26 +00:00
/**************************************************************************/
2020-12-04 18:26:24 +00:00
/* renderer_canvas_render_rd.cpp */
2019-06-22 16:34:26 +00:00
/**************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/**************************************************************************/
2020-02-11 13:01:43 +00:00
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
2019-06-22 16:34:26 +00:00
/* */
/* 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. */
/**************************************************************************/
2020-12-04 18:26:24 +00:00
# include "renderer_canvas_render_rd.h"
2021-10-28 13:43:36 +00:00
2020-11-07 22:33:38 +00:00
# include "core/config/project_settings.h"
2020-11-26 12:50:21 +00:00
# include "core/math/geometry_2d.h"
2021-05-19 12:12:55 +00:00
# include "core/math/math_defs.h"
2019-06-24 19:13:06 +00:00
# include "core/math/math_funcs.h"
2024-02-16 23:57:32 +00:00
# include "core/math/transform_interpolator.h"
2020-12-04 18:26:24 +00:00
# include "renderer_compositor_rd.h"
2022-03-21 11:25:25 +00:00
# include "servers/rendering/renderer_rd/storage_rd/material_storage.h"
2022-04-12 11:41:50 +00:00
# include "servers/rendering/renderer_rd/storage_rd/particles_storage.h"
2022-03-21 11:25:25 +00:00
# include "servers/rendering/renderer_rd/storage_rd/texture_storage.h"
2021-05-20 14:25:06 +00:00
# include "servers/rendering/rendering_server_default.h"
2019-07-21 14:31:30 +00:00
2020-12-04 18:26:24 +00:00
void RendererCanvasRenderRD : : _update_transform_2d_to_mat4 ( const Transform2D & p_transform , float * p_mat4 ) {
2022-04-24 21:59:24 +00:00
p_mat4 [ 0 ] = p_transform . columns [ 0 ] [ 0 ] ;
p_mat4 [ 1 ] = p_transform . columns [ 0 ] [ 1 ] ;
2019-06-16 02:45:24 +00:00
p_mat4 [ 2 ] = 0 ;
p_mat4 [ 3 ] = 0 ;
2022-04-24 21:59:24 +00:00
p_mat4 [ 4 ] = p_transform . columns [ 1 ] [ 0 ] ;
p_mat4 [ 5 ] = p_transform . columns [ 1 ] [ 1 ] ;
2019-06-16 02:45:24 +00:00
p_mat4 [ 6 ] = 0 ;
p_mat4 [ 7 ] = 0 ;
p_mat4 [ 8 ] = 0 ;
p_mat4 [ 9 ] = 0 ;
p_mat4 [ 10 ] = 1 ;
p_mat4 [ 11 ] = 0 ;
2022-04-24 21:59:24 +00:00
p_mat4 [ 12 ] = p_transform . columns [ 2 ] [ 0 ] ;
p_mat4 [ 13 ] = p_transform . columns [ 2 ] [ 1 ] ;
2019-06-16 02:45:24 +00:00
p_mat4 [ 14 ] = 0 ;
p_mat4 [ 15 ] = 1 ;
}
2020-12-04 18:26:24 +00:00
void RendererCanvasRenderRD : : _update_transform_2d_to_mat2x4 ( const Transform2D & p_transform , float * p_mat2x4 ) {
2022-04-24 21:59:24 +00:00
p_mat2x4 [ 0 ] = p_transform . columns [ 0 ] [ 0 ] ;
p_mat2x4 [ 1 ] = p_transform . columns [ 1 ] [ 0 ] ;
2019-06-16 02:45:24 +00:00
p_mat2x4 [ 2 ] = 0 ;
2022-04-24 21:59:24 +00:00
p_mat2x4 [ 3 ] = p_transform . columns [ 2 ] [ 0 ] ;
2019-06-16 02:45:24 +00:00
2022-04-24 21:59:24 +00:00
p_mat2x4 [ 4 ] = p_transform . columns [ 0 ] [ 1 ] ;
p_mat2x4 [ 5 ] = p_transform . columns [ 1 ] [ 1 ] ;
2019-06-16 02:45:24 +00:00
p_mat2x4 [ 6 ] = 0 ;
2022-04-24 21:59:24 +00:00
p_mat2x4 [ 7 ] = p_transform . columns [ 2 ] [ 1 ] ;
2019-06-16 02:45:24 +00:00
}
2020-12-04 18:26:24 +00:00
void RendererCanvasRenderRD : : _update_transform_2d_to_mat2x3 ( const Transform2D & p_transform , float * p_mat2x3 ) {
2022-04-24 21:59:24 +00:00
p_mat2x3 [ 0 ] = p_transform . columns [ 0 ] [ 0 ] ;
p_mat2x3 [ 1 ] = p_transform . columns [ 0 ] [ 1 ] ;
p_mat2x3 [ 2 ] = p_transform . columns [ 1 ] [ 0 ] ;
p_mat2x3 [ 3 ] = p_transform . columns [ 1 ] [ 1 ] ;
p_mat2x3 [ 4 ] = p_transform . columns [ 2 ] [ 0 ] ;
p_mat2x3 [ 5 ] = p_transform . columns [ 2 ] [ 1 ] ;
2019-06-24 19:13:06 +00:00
}
2020-10-17 05:08:21 +00:00
void RendererCanvasRenderRD : : _update_transform_to_mat4 ( const Transform3D & p_transform , float * p_mat4 ) {
2022-04-24 22:07:35 +00:00
p_mat4 [ 0 ] = p_transform . basis . rows [ 0 ] [ 0 ] ;
p_mat4 [ 1 ] = p_transform . basis . rows [ 1 ] [ 0 ] ;
p_mat4 [ 2 ] = p_transform . basis . rows [ 2 ] [ 0 ] ;
2019-06-16 02:45:24 +00:00
p_mat4 [ 3 ] = 0 ;
2022-04-24 22:07:35 +00:00
p_mat4 [ 4 ] = p_transform . basis . rows [ 0 ] [ 1 ] ;
p_mat4 [ 5 ] = p_transform . basis . rows [ 1 ] [ 1 ] ;
p_mat4 [ 6 ] = p_transform . basis . rows [ 2 ] [ 1 ] ;
2019-06-16 02:45:24 +00:00
p_mat4 [ 7 ] = 0 ;
2022-04-24 22:07:35 +00:00
p_mat4 [ 8 ] = p_transform . basis . rows [ 0 ] [ 2 ] ;
p_mat4 [ 9 ] = p_transform . basis . rows [ 1 ] [ 2 ] ;
p_mat4 [ 10 ] = p_transform . basis . rows [ 2 ] [ 2 ] ;
2019-06-16 02:45:24 +00:00
p_mat4 [ 11 ] = 0 ;
p_mat4 [ 12 ] = p_transform . origin . x ;
p_mat4 [ 13 ] = p_transform . origin . y ;
p_mat4 [ 14 ] = p_transform . origin . z ;
p_mat4 [ 15 ] = 1 ;
}
2020-12-04 18:26:24 +00:00
RendererCanvasRender : : PolygonID RendererCanvasRenderRD : : request_polygon ( const Vector < int > & p_indices , const Vector < Point2 > & p_points , const Vector < Color > & p_colors , const Vector < Point2 > & p_uvs , const Vector < int > & p_bones , const Vector < float > & p_weights ) {
2019-06-24 19:13:06 +00:00
// Care must be taken to generate array formats
// in ways where they could be reused, so we will
// put single-occuring elements first, and repeated
// elements later. This way the generated formats are
// the same no matter the length of the arrays.
// This dramatically reduces the amount of pipeline objects
// that need to be created for these formats.
2022-04-02 05:29:04 +00:00
RendererRD : : MeshStorage * mesh_storage = RendererRD : : MeshStorage : : get_singleton ( ) ;
2019-06-24 19:13:06 +00:00
uint32_t vertex_count = p_points . size ( ) ;
uint32_t stride = 2 ; //vertices always repeat
2019-07-10 20:44:55 +00:00
if ( ( uint32_t ) p_colors . size ( ) = = vertex_count | | p_colors . size ( ) = = 1 ) {
2019-06-24 19:13:06 +00:00
stride + = 4 ;
}
if ( ( uint32_t ) p_uvs . size ( ) = = vertex_count ) {
stride + = 2 ;
}
2019-08-26 20:43:58 +00:00
if ( ( uint32_t ) p_bones . size ( ) = = vertex_count * 4 & & ( uint32_t ) p_weights . size ( ) = = vertex_count * 4 ) {
2019-06-24 19:13:06 +00:00
stride + = 4 ;
}
2019-07-10 20:44:55 +00:00
uint32_t buffer_size = stride * p_points . size ( ) ;
2019-06-24 19:13:06 +00:00
2020-02-17 21:06:54 +00:00
Vector < uint8_t > polygon_buffer ;
2019-06-24 19:13:06 +00:00
polygon_buffer . resize ( buffer_size * sizeof ( float ) ) ;
2020-04-21 15:16:45 +00:00
Vector < RD : : VertexAttribute > descriptions ;
2020-12-02 01:40:47 +00:00
descriptions . resize ( 5 ) ;
2019-07-10 20:44:55 +00:00
Vector < RID > buffers ;
2020-12-02 01:40:47 +00:00
buffers . resize ( 5 ) ;
2019-06-24 19:13:06 +00:00
{
2022-04-07 10:23:40 +00:00
uint8_t * r = polygon_buffer . ptrw ( ) ;
float * fptr = reinterpret_cast < float * > ( r ) ;
uint32_t * uptr = reinterpret_cast < uint32_t * > ( r ) ;
2019-07-10 20:44:55 +00:00
uint32_t base_offset = 0 ;
2019-06-24 19:13:06 +00:00
{ //vertices
2020-04-21 15:16:45 +00:00
RD : : VertexAttribute vd ;
2019-06-24 19:13:06 +00:00
vd . format = RD : : DATA_FORMAT_R32G32_SFLOAT ;
vd . offset = base_offset * sizeof ( float ) ;
2020-03-27 18:21:27 +00:00
vd . location = RS : : ARRAY_VERTEX ;
2019-06-24 19:13:06 +00:00
vd . stride = stride * sizeof ( float ) ;
descriptions . write [ 0 ] = vd ;
const Vector2 * points_ptr = p_points . ptr ( ) ;
for ( uint32_t i = 0 ; i < vertex_count ; i + + ) {
fptr [ base_offset + i * stride + 0 ] = points_ptr [ i ] . x ;
fptr [ base_offset + i * stride + 1 ] = points_ptr [ i ] . y ;
}
base_offset + = 2 ;
}
//colors
2019-07-10 20:44:55 +00:00
if ( ( uint32_t ) p_colors . size ( ) = = vertex_count | | p_colors . size ( ) = = 1 ) {
2020-04-21 15:16:45 +00:00
RD : : VertexAttribute vd ;
2019-06-24 19:13:06 +00:00
vd . format = RD : : DATA_FORMAT_R32G32B32A32_SFLOAT ;
vd . offset = base_offset * sizeof ( float ) ;
2020-03-27 18:21:27 +00:00
vd . location = RS : : ARRAY_COLOR ;
2019-06-24 19:13:06 +00:00
vd . stride = stride * sizeof ( float ) ;
descriptions . write [ 1 ] = vd ;
2019-07-10 20:44:55 +00:00
if ( p_colors . size ( ) = = 1 ) {
Color color = p_colors [ 0 ] ;
for ( uint32_t i = 0 ; i < vertex_count ; i + + ) {
fptr [ base_offset + i * stride + 0 ] = color . r ;
fptr [ base_offset + i * stride + 1 ] = color . g ;
fptr [ base_offset + i * stride + 2 ] = color . b ;
fptr [ base_offset + i * stride + 3 ] = color . a ;
}
} else {
const Color * color_ptr = p_colors . ptr ( ) ;
2019-06-24 19:13:06 +00:00
2019-07-10 20:44:55 +00:00
for ( uint32_t i = 0 ; i < vertex_count ; i + + ) {
fptr [ base_offset + i * stride + 0 ] = color_ptr [ i ] . r ;
fptr [ base_offset + i * stride + 1 ] = color_ptr [ i ] . g ;
fptr [ base_offset + i * stride + 2 ] = color_ptr [ i ] . b ;
fptr [ base_offset + i * stride + 3 ] = color_ptr [ i ] . a ;
}
2019-06-24 19:13:06 +00:00
}
base_offset + = 4 ;
} else {
2020-04-21 15:16:45 +00:00
RD : : VertexAttribute vd ;
2019-06-24 19:13:06 +00:00
vd . format = RD : : DATA_FORMAT_R32G32B32A32_SFLOAT ;
2019-07-10 20:44:55 +00:00
vd . offset = 0 ;
2020-03-27 18:21:27 +00:00
vd . location = RS : : ARRAY_COLOR ;
2019-06-24 19:13:06 +00:00
vd . stride = 0 ;
descriptions . write [ 1 ] = vd ;
2022-08-01 01:59:14 +00:00
buffers . write [ 1 ] = mesh_storage - > mesh_get_default_rd_buffer ( RendererRD : : MeshStorage : : DEFAULT_RD_BUFFER_COLOR ) ;
2019-06-24 19:13:06 +00:00
}
//uvs
if ( ( uint32_t ) p_uvs . size ( ) = = vertex_count ) {
2020-04-21 15:16:45 +00:00
RD : : VertexAttribute vd ;
2019-06-24 19:13:06 +00:00
vd . format = RD : : DATA_FORMAT_R32G32_SFLOAT ;
vd . offset = base_offset * sizeof ( float ) ;
2020-03-27 18:21:27 +00:00
vd . location = RS : : ARRAY_TEX_UV ;
2019-06-24 19:13:06 +00:00
vd . stride = stride * sizeof ( float ) ;
descriptions . write [ 2 ] = vd ;
const Vector2 * uv_ptr = p_uvs . ptr ( ) ;
for ( uint32_t i = 0 ; i < vertex_count ; i + + ) {
fptr [ base_offset + i * stride + 0 ] = uv_ptr [ i ] . x ;
fptr [ base_offset + i * stride + 1 ] = uv_ptr [ i ] . y ;
}
base_offset + = 2 ;
} else {
2020-04-21 15:16:45 +00:00
RD : : VertexAttribute vd ;
2019-06-24 19:13:06 +00:00
vd . format = RD : : DATA_FORMAT_R32G32_SFLOAT ;
2019-07-10 20:44:55 +00:00
vd . offset = 0 ;
2020-03-27 18:21:27 +00:00
vd . location = RS : : ARRAY_TEX_UV ;
2019-06-24 19:13:06 +00:00
vd . stride = 0 ;
descriptions . write [ 2 ] = vd ;
2022-08-01 01:59:14 +00:00
buffers . write [ 2 ] = mesh_storage - > mesh_get_default_rd_buffer ( RendererRD : : MeshStorage : : DEFAULT_RD_BUFFER_TEX_UV ) ;
2019-06-24 19:13:06 +00:00
}
//bones
2019-08-26 20:43:58 +00:00
if ( ( uint32_t ) p_indices . size ( ) = = vertex_count * 4 & & ( uint32_t ) p_weights . size ( ) = = vertex_count * 4 ) {
2020-04-21 15:16:45 +00:00
RD : : VertexAttribute vd ;
2020-12-02 01:40:47 +00:00
vd . format = RD : : DATA_FORMAT_R16G16B16A16_UINT ;
2019-06-24 19:13:06 +00:00
vd . offset = base_offset * sizeof ( float ) ;
2020-03-27 18:21:27 +00:00
vd . location = RS : : ARRAY_BONES ;
2019-06-24 19:13:06 +00:00
vd . stride = stride * sizeof ( float ) ;
descriptions . write [ 3 ] = vd ;
const int * bone_ptr = p_bones . ptr ( ) ;
for ( uint32_t i = 0 ; i < vertex_count ; i + + ) {
2019-08-26 20:43:58 +00:00
uint16_t * bone16w = ( uint16_t * ) & uptr [ base_offset + i * stride ] ;
bone16w [ 0 ] = bone_ptr [ i * 4 + 0 ] ;
bone16w [ 1 ] = bone_ptr [ i * 4 + 1 ] ;
bone16w [ 2 ] = bone_ptr [ i * 4 + 2 ] ;
bone16w [ 3 ] = bone_ptr [ i * 4 + 3 ] ;
2020-12-02 01:40:47 +00:00
}
base_offset + = 2 ;
} else {
RD : : VertexAttribute vd ;
vd . format = RD : : DATA_FORMAT_R32G32B32A32_UINT ;
vd . offset = 0 ;
vd . location = RS : : ARRAY_BONES ;
vd . stride = 0 ;
descriptions . write [ 3 ] = vd ;
2022-08-01 01:59:14 +00:00
buffers . write [ 3 ] = mesh_storage - > mesh_get_default_rd_buffer ( RendererRD : : MeshStorage : : DEFAULT_RD_BUFFER_BONES ) ;
2020-12-02 01:40:47 +00:00
}
//weights
if ( ( uint32_t ) p_weights . size ( ) = = vertex_count * 4 ) {
RD : : VertexAttribute vd ;
vd . format = RD : : DATA_FORMAT_R16G16B16A16_UNORM ;
vd . offset = base_offset * sizeof ( float ) ;
vd . location = RS : : ARRAY_WEIGHTS ;
vd . stride = stride * sizeof ( float ) ;
descriptions . write [ 4 ] = vd ;
const float * weight_ptr = p_weights . ptr ( ) ;
for ( uint32_t i = 0 ; i < vertex_count ; i + + ) {
uint16_t * weight16w = ( uint16_t * ) & uptr [ base_offset + i * stride ] ;
2019-08-26 20:43:58 +00:00
weight16w [ 0 ] = CLAMP ( weight_ptr [ i * 4 + 0 ] * 65535 , 0 , 65535 ) ;
weight16w [ 1 ] = CLAMP ( weight_ptr [ i * 4 + 1 ] * 65535 , 0 , 65535 ) ;
weight16w [ 2 ] = CLAMP ( weight_ptr [ i * 4 + 2 ] * 65535 , 0 , 65535 ) ;
weight16w [ 3 ] = CLAMP ( weight_ptr [ i * 4 + 3 ] * 65535 , 0 , 65535 ) ;
2019-06-24 19:13:06 +00:00
}
2020-12-02 01:40:47 +00:00
base_offset + = 2 ;
2019-06-24 19:13:06 +00:00
} else {
2020-04-21 15:16:45 +00:00
RD : : VertexAttribute vd ;
2020-12-02 01:40:47 +00:00
vd . format = RD : : DATA_FORMAT_R32G32B32A32_SFLOAT ;
2019-07-10 20:44:55 +00:00
vd . offset = 0 ;
2020-12-02 01:40:47 +00:00
vd . location = RS : : ARRAY_WEIGHTS ;
2019-06-24 19:13:06 +00:00
vd . stride = 0 ;
2020-12-02 01:40:47 +00:00
descriptions . write [ 4 ] = vd ;
2022-08-01 01:59:14 +00:00
buffers . write [ 4 ] = mesh_storage - > mesh_get_default_rd_buffer ( RendererRD : : MeshStorage : : DEFAULT_RD_BUFFER_WEIGHTS ) ;
2019-06-24 19:13:06 +00:00
}
//check that everything is as it should be
2019-07-10 20:44:55 +00:00
ERR_FAIL_COND_V ( base_offset ! = stride , 0 ) ; //bug
2019-06-24 19:13:06 +00:00
}
RD : : VertexFormatID vertex_id = RD : : get_singleton ( ) - > vertex_format_create ( descriptions ) ;
ERR_FAIL_COND_V ( vertex_id = = RD : : INVALID_ID , 0 ) ;
PolygonBuffers pb ;
pb . vertex_buffer = RD : : get_singleton ( ) - > vertex_buffer_create ( polygon_buffer . size ( ) , polygon_buffer ) ;
for ( int i = 0 ; i < descriptions . size ( ) ; i + + ) {
2019-07-10 20:44:55 +00:00
if ( buffers [ i ] = = RID ( ) ) { //if put in vertex, use as vertex
buffers . write [ i ] = pb . vertex_buffer ;
}
2019-06-24 19:13:06 +00:00
}
2019-07-10 20:44:55 +00:00
2019-06-24 19:13:06 +00:00
pb . vertex_array = RD : : get_singleton ( ) - > vertex_array_create ( p_points . size ( ) , vertex_id , buffers ) ;
2023-12-05 23:48:01 +00:00
pb . primitive_count = vertex_count ;
2019-06-24 19:13:06 +00:00
if ( p_indices . size ( ) ) {
//create indices, as indices were requested
2020-02-17 21:06:54 +00:00
Vector < uint8_t > index_buffer ;
2019-06-24 19:13:06 +00:00
index_buffer . resize ( p_indices . size ( ) * sizeof ( int32_t ) ) ;
{
2020-02-17 21:06:54 +00:00
uint8_t * w = index_buffer . ptrw ( ) ;
2021-04-27 14:19:21 +00:00
memcpy ( w , p_indices . ptr ( ) , sizeof ( int32_t ) * p_indices . size ( ) ) ;
2019-06-24 19:13:06 +00:00
}
pb . index_buffer = RD : : get_singleton ( ) - > index_buffer_create ( p_indices . size ( ) , RD : : INDEX_BUFFER_FORMAT_UINT32 , index_buffer ) ;
pb . indices = RD : : get_singleton ( ) - > index_array_create ( pb . index_buffer , 0 , p_indices . size ( ) ) ;
2023-12-05 23:48:01 +00:00
pb . primitive_count = p_indices . size ( ) ;
2019-06-24 19:13:06 +00:00
}
pb . vertex_format_id = vertex_id ;
PolygonID id = polygon_buffers . last_id + + ;
polygon_buffers . polygons [ id ] = pb ;
return id ;
}
2020-12-04 18:26:24 +00:00
void RendererCanvasRenderRD : : free_polygon ( PolygonID p_polygon ) {
2019-06-24 19:13:06 +00:00
PolygonBuffers * pb_ptr = polygon_buffers . polygons . getptr ( p_polygon ) ;
2023-09-09 15:04:18 +00:00
ERR_FAIL_NULL ( pb_ptr ) ;
2019-06-24 19:13:06 +00:00
PolygonBuffers & pb = * pb_ptr ;
if ( pb . indices . is_valid ( ) ) {
RD : : get_singleton ( ) - > free ( pb . indices ) ;
}
if ( pb . index_buffer . is_valid ( ) ) {
RD : : get_singleton ( ) - > free ( pb . index_buffer ) ;
}
RD : : get_singleton ( ) - > free ( pb . vertex_array ) ;
RD : : get_singleton ( ) - > free ( pb . vertex_buffer ) ;
polygon_buffers . polygons . erase ( p_polygon ) ;
}
2020-10-24 15:15:43 +00:00
////////////////////
2024-03-15 17:13:31 +00:00
static RD : : RenderPrimitive _primitive_type_to_render_primitive ( RS : : PrimitiveType p_primitive ) {
switch ( p_primitive ) {
case RS : : PRIMITIVE_POINTS :
return RD : : RENDER_PRIMITIVE_POINTS ;
case RS : : PRIMITIVE_LINES :
return RD : : RENDER_PRIMITIVE_LINES ;
case RS : : PRIMITIVE_LINE_STRIP :
return RD : : RENDER_PRIMITIVE_LINESTRIPS ;
case RS : : PRIMITIVE_TRIANGLES :
return RD : : RENDER_PRIMITIVE_TRIANGLES ;
case RS : : PRIMITIVE_TRIANGLE_STRIP :
return RD : : RENDER_PRIMITIVE_TRIANGLE_STRIPS ;
default :
return RD : : RENDER_PRIMITIVE_MAX ;
}
}
2024-07-29 21:23:03 +00:00
_FORCE_INLINE_ static uint32_t _indices_to_primitives ( RS : : PrimitiveType p_primitive , uint32_t p_indices ) {
static const uint32_t divisor [ RS : : PRIMITIVE_MAX ] = { 1 , 2 , 1 , 3 , 1 } ;
static const uint32_t subtractor [ RS : : PRIMITIVE_MAX ] = { 0 , 0 , 1 , 0 , 1 } ;
return ( p_indices - subtractor [ p_primitive ] ) / divisor [ p_primitive ] ;
}
RID RendererCanvasRenderRD : : _create_base_uniform_set ( RID p_to_render_target , bool p_backbuffer ) {
RendererRD : : TextureStorage * texture_storage = RendererRD : : TextureStorage : : get_singleton ( ) ;
RendererRD : : MaterialStorage * material_storage = RendererRD : : MaterialStorage : : get_singleton ( ) ;
//re create canvas state
Vector < RD : : Uniform > uniforms ;
2019-06-24 19:13:06 +00:00
2024-07-29 21:23:03 +00:00
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_UNIFORM_BUFFER ;
u . binding = 1 ;
u . append_id ( state . canvas_state_buffer ) ;
uniforms . push_back ( u ) ;
2019-07-05 01:54:32 +00:00
}
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_UNIFORM_BUFFER ;
u . binding = 2 ;
u . append_id ( state . lights_uniform_buffer ) ;
uniforms . push_back ( u ) ;
}
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_TEXTURE ;
u . binding = 3 ;
u . append_id ( RendererRD : : TextureStorage : : get_singleton ( ) - > decal_atlas_get_texture ( ) ) ;
uniforms . push_back ( u ) ;
2019-07-05 01:54:32 +00:00
}
2024-07-29 21:23:03 +00:00
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_TEXTURE ;
u . binding = 4 ;
u . append_id ( state . shadow_texture ) ;
uniforms . push_back ( u ) ;
}
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_SAMPLER ;
u . binding = 5 ;
u . append_id ( state . shadow_sampler ) ;
uniforms . push_back ( u ) ;
2019-06-24 19:13:06 +00:00
}
2024-07-29 21:23:03 +00:00
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_TEXTURE ;
u . binding = 6 ;
RID screen ;
if ( p_backbuffer ) {
screen = texture_storage - > render_target_get_rd_texture ( p_to_render_target ) ;
} else {
screen = texture_storage - > render_target_get_rd_backbuffer ( p_to_render_target ) ;
if ( screen . is_null ( ) ) { //unallocated backbuffer
screen = RendererRD : : TextureStorage : : get_singleton ( ) - > texture_rd_get_default ( RendererRD : : TextureStorage : : DEFAULT_RD_TEXTURE_WHITE ) ;
}
}
u . append_id ( screen ) ;
uniforms . push_back ( u ) ;
2019-06-24 19:13:06 +00:00
}
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_TEXTURE ;
u . binding = 7 ;
RID sdf = texture_storage - > render_target_get_sdf_texture ( p_to_render_target ) ;
u . append_id ( sdf ) ;
uniforms . push_back ( u ) ;
}
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_STORAGE_BUFFER ;
u . binding = 9 ;
u . append_id ( RendererRD : : MaterialStorage : : get_singleton ( ) - > global_shader_uniforms_get_storage_buffer ( ) ) ;
uniforms . push_back ( u ) ;
}
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
uniforms . append_array ( material_storage - > samplers_rd_get_default ( ) . get_uniforms ( SAMPLERS_BINDING_FIRST_INDEX ) ) ;
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
RID uniform_set = RD : : get_singleton ( ) - > uniform_set_create ( uniforms , shader . default_version_rd_shader , BASE_UNIFORM_SET ) ;
if ( p_backbuffer ) {
texture_storage - > render_target_set_backbuffer_uniform_set ( p_to_render_target , uniform_set ) ;
} else {
texture_storage - > render_target_set_framebuffer_uniform_set ( p_to_render_target , uniform_set ) ;
}
2019-06-24 19:13:06 +00:00
2024-07-29 21:23:03 +00:00
return uniform_set ;
2023-12-05 23:48:01 +00:00
}
2024-03-15 17:13:31 +00:00
RID RendererCanvasRenderRD : : _get_pipeline_specialization_or_ubershader ( CanvasShaderData * p_shader_data , PipelineKey & r_pipeline_key , PushConstant & r_push_constant , RID p_mesh_instance , void * p_surface , uint32_t p_surface_index , RID * r_vertex_array ) {
r_pipeline_key . ubershader = 0 ;
const uint32_t ubershader_iterations = 1 ;
while ( r_pipeline_key . ubershader < ubershader_iterations ) {
if ( r_vertex_array ! = nullptr ) {
RendererRD : : MeshStorage * mesh_storage = RendererRD : : MeshStorage : : get_singleton ( ) ;
uint64_t input_mask = p_shader_data - > get_vertex_input_mask ( r_pipeline_key . variant , r_pipeline_key . ubershader ) ;
if ( p_mesh_instance . is_valid ( ) ) {
mesh_storage - > mesh_instance_surface_get_vertex_arrays_and_format ( p_mesh_instance , p_surface_index , input_mask , false , * r_vertex_array , r_pipeline_key . vertex_format_id ) ;
} else {
mesh_storage - > mesh_surface_get_vertex_arrays_and_format ( p_surface , input_mask , false , * r_vertex_array , r_pipeline_key . vertex_format_id ) ;
}
}
if ( r_pipeline_key . ubershader ) {
r_push_constant . shader_specialization = r_pipeline_key . shader_specialization ;
r_pipeline_key . shader_specialization = { } ;
} else {
r_push_constant . shader_specialization = { } ;
}
bool wait_for_compilation = r_pipeline_key . ubershader | | ubershader_iterations = = 1 ;
RS : : PipelineSource source = RS : : PIPELINE_SOURCE_CANVAS ;
RID pipeline = p_shader_data - > pipeline_hash_map . get_pipeline ( r_pipeline_key , r_pipeline_key . hash ( ) , wait_for_compilation , source ) ;
if ( pipeline . is_valid ( ) ) {
return pipeline ;
}
r_pipeline_key . ubershader + + ;
}
// This case should never be reached unless the shader wasn't available.
return RID ( ) ;
}
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : canvas_render_items ( RID p_to_render_target , Item * p_item_list , const Color & p_modulate , Light * p_light_list , Light * p_directional_light_list , const Transform2D & p_canvas_transform , RenderingServer : : CanvasItemTextureFilter p_default_filter , RenderingServer : : CanvasItemTextureRepeat p_default_repeat , bool p_snap_2d_vertices_to_pixel , bool & r_sdf_used , RenderingMethod : : RenderInfo * r_render_info ) {
2022-04-07 14:00:51 +00:00
RendererRD : : TextureStorage * texture_storage = RendererRD : : TextureStorage : : get_singleton ( ) ;
2024-07-29 21:23:03 +00:00
RendererRD : : MaterialStorage * material_storage = RendererRD : : MaterialStorage : : get_singleton ( ) ;
2022-04-02 05:29:04 +00:00
RendererRD : : MeshStorage * mesh_storage = RendererRD : : MeshStorage : : get_singleton ( ) ;
2019-07-10 20:44:55 +00:00
2024-07-29 21:23:03 +00:00
r_sdf_used = false ;
int item_count = 0 ;
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
//setup canvas state uniforms if needed
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
Transform2D canvas_transform_inverse = p_canvas_transform . affine_inverse ( ) ;
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
//setup directional lights if exist
2024-01-17 17:09:52 +00:00
2024-07-29 21:23:03 +00:00
uint32_t light_count = 0 ;
uint32_t directional_light_count = 0 ;
{
Light * l = p_directional_light_list ;
uint32_t index = 0 ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
while ( l ) {
if ( index = = state . max_lights_per_render ) {
l - > render_index_cache = - 1 ;
l = l - > next_ptr ;
continue ;
}
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
CanvasLight * clight = canvas_light_owner . get_or_null ( l - > light_internal ) ;
if ( ! clight ) { //unused or invalid texture
l - > render_index_cache = - 1 ;
l = l - > next_ptr ;
ERR_CONTINUE ( ! clight ) ;
}
2019-06-26 18:11:52 +00:00
2024-07-29 21:23:03 +00:00
Vector2 canvas_light_dir = l - > xform_cache . columns [ 1 ] . normalized ( ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
state . light_uniforms [ index ] . position [ 0 ] = - canvas_light_dir . x ;
state . light_uniforms [ index ] . position [ 1 ] = - canvas_light_dir . y ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
_update_transform_2d_to_mat2x4 ( clight - > shadow . directional_xform , state . light_uniforms [ index ] . shadow_matrix ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
state . light_uniforms [ index ] . height = l - > height ; //0..1 here
2019-07-10 20:44:55 +00:00
2024-07-29 21:23:03 +00:00
for ( int i = 0 ; i < 4 ; i + + ) {
state . light_uniforms [ index ] . shadow_color [ i ] = uint8_t ( CLAMP ( int32_t ( l - > shadow_color [ i ] * 255.0 ) , 0 , 255 ) ) ;
state . light_uniforms [ index ] . color [ i ] = l - > color [ i ] ;
}
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
state . light_uniforms [ index ] . color [ 3 ] * = l - > energy ; //use alpha for energy, so base color can go separate
2019-07-10 20:44:55 +00:00
2024-07-29 21:23:03 +00:00
if ( state . shadow_fb . is_valid ( ) ) {
state . light_uniforms [ index ] . shadow_pixel_size = ( 1.0 / state . shadow_texture_size ) * ( 1.0 + l - > shadow_smooth ) ;
state . light_uniforms [ index ] . shadow_z_far_inv = 1.0 / clight - > shadow . z_far ;
state . light_uniforms [ index ] . shadow_y_ofs = clight - > shadow . y_offset ;
} else {
state . light_uniforms [ index ] . shadow_pixel_size = 1.0 ;
state . light_uniforms [ index ] . shadow_z_far_inv = 1.0 ;
state . light_uniforms [ index ] . shadow_y_ofs = 0 ;
}
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
state . light_uniforms [ index ] . flags = l - > blend_mode < < LIGHT_FLAGS_BLEND_SHIFT ;
state . light_uniforms [ index ] . flags | = l - > shadow_filter < < LIGHT_FLAGS_FILTER_SHIFT ;
if ( clight - > shadow . enabled ) {
state . light_uniforms [ index ] . flags | = LIGHT_FLAGS_HAS_SHADOW ;
2019-07-05 01:54:32 +00:00
}
2024-07-29 21:23:03 +00:00
l - > render_index_cache = index ;
index + + ;
l = l - > next_ptr ;
2019-07-05 01:54:32 +00:00
}
2024-07-29 21:23:03 +00:00
light_count = index ;
directional_light_count = light_count ;
using_directional_lights = directional_light_count > 0 ;
2019-07-05 01:54:32 +00:00
}
2024-07-29 21:23:03 +00:00
//setup lights if exist
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
{
Light * l = p_light_list ;
uint32_t index = light_count ;
2019-06-24 19:13:06 +00:00
2024-07-29 21:23:03 +00:00
while ( l ) {
if ( index = = state . max_lights_per_render ) {
l - > render_index_cache = - 1 ;
l = l - > next_ptr ;
continue ;
}
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
CanvasLight * clight = canvas_light_owner . get_or_null ( l - > light_internal ) ;
if ( ! clight ) { //unused or invalid texture
l - > render_index_cache = - 1 ;
l = l - > next_ptr ;
ERR_CONTINUE ( ! clight ) ;
}
2021-06-17 14:30:20 +00:00
2024-07-29 21:23:03 +00:00
Transform2D final_xform ;
if ( ! RSG : : canvas - > _interpolation_data . interpolation_enabled | | ! l - > interpolated ) {
final_xform = l - > xform_curr ;
} else {
real_t f = Engine : : get_singleton ( ) - > get_physics_interpolation_fraction ( ) ;
TransformInterpolator : : interpolate_transform_2d ( l - > xform_prev , l - > xform_curr , final_xform , f ) ;
}
// Convert light position to canvas coordinates, as all computation is done in canvas coordinates to avoid precision loss.
Vector2 canvas_light_pos = p_canvas_transform . xform ( final_xform . get_origin ( ) ) ;
state . light_uniforms [ index ] . position [ 0 ] = canvas_light_pos . x ;
state . light_uniforms [ index ] . position [ 1 ] = canvas_light_pos . y ;
2021-06-17 14:30:20 +00:00
2024-07-29 21:23:03 +00:00
_update_transform_2d_to_mat2x4 ( l - > light_shader_xform . affine_inverse ( ) , state . light_uniforms [ index ] . matrix ) ;
_update_transform_2d_to_mat2x4 ( l - > xform_cache . affine_inverse ( ) , state . light_uniforms [ index ] . shadow_matrix ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
state . light_uniforms [ index ] . height = l - > height * ( p_canvas_transform . columns [ 0 ] . length ( ) + p_canvas_transform . columns [ 1 ] . length ( ) ) * 0.5 ; //approximate height conversion to the canvas size, since all calculations are done in canvas coords to avoid precision loss
for ( int i = 0 ; i < 4 ; i + + ) {
state . light_uniforms [ index ] . shadow_color [ i ] = uint8_t ( CLAMP ( int32_t ( l - > shadow_color [ i ] * 255.0 ) , 0 , 255 ) ) ;
state . light_uniforms [ index ] . color [ i ] = l - > color [ i ] ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
state . light_uniforms [ index ] . color [ 3 ] * = l - > energy ; //use alpha for energy, so base color can go separate
2021-04-14 04:30:23 +00:00
2024-07-29 21:23:03 +00:00
if ( state . shadow_fb . is_valid ( ) ) {
state . light_uniforms [ index ] . shadow_pixel_size = ( 1.0 / state . shadow_texture_size ) * ( 1.0 + l - > shadow_smooth ) ;
state . light_uniforms [ index ] . shadow_z_far_inv = 1.0 / clight - > shadow . z_far ;
state . light_uniforms [ index ] . shadow_y_ofs = clight - > shadow . y_offset ;
} else {
state . light_uniforms [ index ] . shadow_pixel_size = 1.0 ;
state . light_uniforms [ index ] . shadow_z_far_inv = 1.0 ;
state . light_uniforms [ index ] . shadow_y_ofs = 0 ;
}
2024-07-08 08:17:31 +00:00
2024-07-29 21:23:03 +00:00
state . light_uniforms [ index ] . flags = l - > blend_mode < < LIGHT_FLAGS_BLEND_SHIFT ;
state . light_uniforms [ index ] . flags | = l - > shadow_filter < < LIGHT_FLAGS_FILTER_SHIFT ;
if ( clight - > shadow . enabled ) {
state . light_uniforms [ index ] . flags | = LIGHT_FLAGS_HAS_SHADOW ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
if ( clight - > texture . is_valid ( ) ) {
Rect2 atlas_rect = RendererRD : : TextureStorage : : get_singleton ( ) - > decal_atlas_get_texture_rect ( clight - > texture ) ;
state . light_uniforms [ index ] . atlas_rect [ 0 ] = atlas_rect . position . x ;
state . light_uniforms [ index ] . atlas_rect [ 1 ] = atlas_rect . position . y ;
state . light_uniforms [ index ] . atlas_rect [ 2 ] = atlas_rect . size . width ;
state . light_uniforms [ index ] . atlas_rect [ 3 ] = atlas_rect . size . height ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
} else {
state . light_uniforms [ index ] . atlas_rect [ 0 ] = 0 ;
state . light_uniforms [ index ] . atlas_rect [ 1 ] = 0 ;
state . light_uniforms [ index ] . atlas_rect [ 2 ] = 0 ;
state . light_uniforms [ index ] . atlas_rect [ 3 ] = 0 ;
}
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
l - > render_index_cache = index ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
index + + ;
l = l - > next_ptr ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
light_count = index ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
if ( light_count > 0 ) {
RD : : get_singleton ( ) - > buffer_update ( state . lights_uniform_buffer , 0 , sizeof ( LightUniform ) * light_count , & state . light_uniforms [ 0 ] ) ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
{
//update canvas state uniform buffer
State : : Buffer state_buffer ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
Size2i ssize = texture_storage - > render_target_get_size ( p_to_render_target ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
Transform3D screen_transform ;
screen_transform . translate_local ( - ( ssize . width / 2.0f ) , - ( ssize . height / 2.0f ) , 0.0f ) ;
screen_transform . scale ( Vector3 ( 2.0f / ssize . width , 2.0f / ssize . height , 1.0f ) ) ;
_update_transform_to_mat4 ( screen_transform , state_buffer . screen_transform ) ;
_update_transform_2d_to_mat4 ( p_canvas_transform , state_buffer . canvas_transform ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
Transform2D normal_transform = p_canvas_transform ;
normal_transform . columns [ 0 ] . normalize ( ) ;
normal_transform . columns [ 1 ] . normalize ( ) ;
normal_transform . columns [ 2 ] = Vector2 ( ) ;
_update_transform_2d_to_mat4 ( normal_transform , state_buffer . canvas_normal_transform ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
bool use_linear_colors = texture_storage - > render_target_is_using_hdr ( p_to_render_target ) ;
Color modulate = p_modulate ;
if ( use_linear_colors ) {
modulate = p_modulate . srgb_to_linear ( ) ;
}
state_buffer . canvas_modulate [ 0 ] = modulate . r ;
state_buffer . canvas_modulate [ 1 ] = modulate . g ;
state_buffer . canvas_modulate [ 2 ] = modulate . b ;
state_buffer . canvas_modulate [ 3 ] = modulate . a ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
Size2 render_target_size = texture_storage - > render_target_get_size ( p_to_render_target ) ;
state_buffer . screen_pixel_size [ 0 ] = 1.0 / render_target_size . x ;
state_buffer . screen_pixel_size [ 1 ] = 1.0 / render_target_size . y ;
2020-12-27 13:30:33 +00:00
2024-07-29 21:23:03 +00:00
state_buffer . time = state . time ;
state_buffer . use_pixel_snap = p_snap_2d_vertices_to_pixel ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
state_buffer . directional_light_count = directional_light_count ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
Vector2 canvas_scale = p_canvas_transform . get_scale ( ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
state_buffer . sdf_to_screen [ 0 ] = render_target_size . width / canvas_scale . x ;
state_buffer . sdf_to_screen [ 1 ] = render_target_size . height / canvas_scale . y ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
state_buffer . screen_to_sdf [ 0 ] = 1.0 / state_buffer . sdf_to_screen [ 0 ] ;
state_buffer . screen_to_sdf [ 1 ] = 1.0 / state_buffer . sdf_to_screen [ 1 ] ;
2023-12-05 23:48:01 +00:00
2024-07-29 21:23:03 +00:00
Rect2 sdf_rect = texture_storage - > render_target_get_sdf_rect ( p_to_render_target ) ;
Rect2 sdf_tex_rect ( sdf_rect . position / canvas_scale , sdf_rect . size / canvas_scale ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
state_buffer . sdf_to_tex [ 0 ] = 1.0 / sdf_tex_rect . size . width ;
state_buffer . sdf_to_tex [ 1 ] = 1.0 / sdf_tex_rect . size . height ;
state_buffer . sdf_to_tex [ 2 ] = - sdf_tex_rect . position . x / sdf_tex_rect . size . width ;
state_buffer . sdf_to_tex [ 3 ] = - sdf_tex_rect . position . y / sdf_tex_rect . size . height ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
//print_line("w: " + itos(ssize.width) + " s: " + rtos(canvas_scale));
state_buffer . tex_to_sdf = 1.0 / ( ( canvas_scale . x + canvas_scale . y ) * 0.5 ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > buffer_update ( state . canvas_state_buffer , 0 , sizeof ( State : : Buffer ) , & state_buffer ) ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
{ //default filter/repeat
default_filter = p_default_filter ;
default_repeat = p_default_repeat ;
}
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
Item * ci = p_item_list ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
//fill the list until rendering is possible.
bool material_screen_texture_cached = false ;
bool material_screen_texture_mipmaps_cached = false ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
Rect2 back_buffer_rect ;
bool backbuffer_copy = false ;
bool backbuffer_gen_mipmaps = false ;
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
Item * canvas_group_owner = nullptr ;
bool skip_item = false ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
state . last_instance_index = 0 ;
2023-08-03 12:10:01 +00:00
2024-07-29 21:23:03 +00:00
bool update_skeletons = false ;
bool time_used = false ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
bool backbuffer_cleared = false ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
RenderTarget to_render_target ;
to_render_target . render_target = p_to_render_target ;
bool use_linear_colors = texture_storage - > render_target_is_using_hdr ( p_to_render_target ) ;
to_render_target . base_flags = use_linear_colors ? FLAGS_CONVERT_ATTRIBUTES_TO_LINEAR : 0 ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
while ( ci ) {
if ( ci - > copy_back_buffer & & canvas_group_owner = = nullptr ) {
backbuffer_copy = true ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
if ( ci - > copy_back_buffer - > full ) {
back_buffer_rect = Rect2 ( ) ;
} else {
back_buffer_rect = ci - > copy_back_buffer - > rect ;
}
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
RID material = ci - > material_owner = = nullptr ? ci - > material : ci - > material_owner - > material ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
if ( material . is_valid ( ) ) {
CanvasMaterialData * md = static_cast < CanvasMaterialData * > ( material_storage - > material_get_data ( material , RendererRD : : MaterialStorage : : SHADER_TYPE_2D ) ) ;
2024-03-15 17:13:31 +00:00
if ( md & & md - > shader_data - > is_valid ( ) ) {
2024-07-29 21:23:03 +00:00
if ( md - > shader_data - > uses_screen_texture & & canvas_group_owner = = nullptr ) {
if ( ! material_screen_texture_cached ) {
backbuffer_copy = true ;
back_buffer_rect = Rect2 ( ) ;
backbuffer_gen_mipmaps = md - > shader_data - > uses_screen_texture_mipmaps ;
} else if ( ! material_screen_texture_mipmaps_cached ) {
backbuffer_gen_mipmaps = md - > shader_data - > uses_screen_texture_mipmaps ;
}
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
if ( md - > shader_data - > uses_sdf ) {
r_sdf_used = true ;
}
if ( md - > shader_data - > uses_time ) {
time_used = true ;
2023-12-05 23:48:01 +00:00
}
2024-07-29 21:23:03 +00:00
}
}
2023-12-05 23:48:01 +00:00
2024-07-29 21:23:03 +00:00
if ( ci - > skeleton . is_valid ( ) ) {
const Item : : Command * c = ci - > commands ;
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
while ( c ) {
if ( c - > type = = Item : : Command : : TYPE_MESH ) {
const Item : : CommandMesh * cm = static_cast < const Item : : CommandMesh * > ( c ) ;
if ( cm - > mesh_instance . is_valid ( ) ) {
mesh_storage - > mesh_instance_check_for_update ( cm - > mesh_instance ) ;
mesh_storage - > mesh_instance_set_canvas_item_transform ( cm - > mesh_instance , canvas_transform_inverse * ci - > final_transform ) ;
update_skeletons = true ;
}
}
c = c - > next ;
}
}
2019-06-24 19:13:06 +00:00
2024-07-29 21:23:03 +00:00
if ( ci - > canvas_group_owner ! = nullptr ) {
if ( canvas_group_owner = = nullptr ) {
// Canvas group begins here, render until before this item
if ( update_skeletons ) {
mesh_storage - > update_mesh_instances ( ) ;
update_skeletons = false ;
2019-06-24 19:13:06 +00:00
}
2024-07-29 21:23:03 +00:00
_render_batch_items ( to_render_target , item_count , canvas_transform_inverse , p_light_list , r_sdf_used , false , r_render_info ) ;
item_count = 0 ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
if ( ci - > canvas_group_owner - > canvas_group - > mode ! = RS : : CANVAS_GROUP_MODE_TRANSPARENT ) {
Rect2i group_rect = ci - > canvas_group_owner - > global_rect_cache ;
texture_storage - > render_target_copy_to_back_buffer ( p_to_render_target , group_rect , false ) ;
if ( ci - > canvas_group_owner - > canvas_group - > mode = = RS : : CANVAS_GROUP_MODE_CLIP_AND_DRAW ) {
ci - > canvas_group_owner - > use_canvas_group = false ;
items [ item_count + + ] = ci - > canvas_group_owner ;
}
} else if ( ! backbuffer_cleared ) {
texture_storage - > render_target_clear_back_buffer ( p_to_render_target , Rect2i ( ) , Color ( 0 , 0 , 0 , 0 ) ) ;
backbuffer_cleared = true ;
2019-06-24 19:13:06 +00:00
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
backbuffer_copy = false ;
canvas_group_owner = ci - > canvas_group_owner ; //continue until owner found
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
ci - > canvas_group_owner = nullptr ; //must be cleared
}
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
if ( canvas_group_owner = = nullptr & & ci - > canvas_group ! = nullptr & & ci - > canvas_group - > mode ! = RS : : CANVAS_GROUP_MODE_CLIP_AND_DRAW ) {
skip_item = true ;
}
2023-08-03 12:10:01 +00:00
2024-07-29 21:23:03 +00:00
if ( ci = = canvas_group_owner ) {
if ( update_skeletons ) {
mesh_storage - > update_mesh_instances ( ) ;
update_skeletons = false ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
_render_batch_items ( to_render_target , item_count , canvas_transform_inverse , p_light_list , r_sdf_used , true , r_render_info ) ;
item_count = 0 ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
if ( ci - > canvas_group - > blur_mipmaps ) {
texture_storage - > render_target_gen_back_buffer_mipmaps ( p_to_render_target , ci - > global_rect_cache ) ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
canvas_group_owner = nullptr ;
// Backbuffer is dirty now and needs to be re-cleared if another CanvasGroup needs it.
backbuffer_cleared = false ;
2023-12-05 23:48:01 +00:00
2024-07-29 21:23:03 +00:00
// Tell the renderer to paint this as a canvas group
ci - > use_canvas_group = true ;
} else {
ci - > use_canvas_group = false ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
if ( backbuffer_copy ) {
//render anything pending, including clearing if no items
if ( update_skeletons ) {
mesh_storage - > update_mesh_instances ( ) ;
update_skeletons = false ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
_render_batch_items ( to_render_target , item_count , canvas_transform_inverse , p_light_list , r_sdf_used , false , r_render_info ) ;
item_count = 0 ;
2019-06-24 19:13:06 +00:00
2024-07-29 21:23:03 +00:00
texture_storage - > render_target_copy_to_back_buffer ( p_to_render_target , back_buffer_rect , backbuffer_gen_mipmaps ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
backbuffer_copy = false ;
material_screen_texture_cached = true ; // After a backbuffer copy, screen texture makes no further copies.
material_screen_texture_mipmaps_cached = backbuffer_gen_mipmaps ;
backbuffer_gen_mipmaps = false ;
}
2019-06-26 18:11:52 +00:00
2024-07-29 21:23:03 +00:00
if ( backbuffer_gen_mipmaps ) {
texture_storage - > render_target_gen_back_buffer_mipmaps ( p_to_render_target , back_buffer_rect ) ;
2021-05-10 16:12:44 +00:00
2024-07-29 21:23:03 +00:00
backbuffer_gen_mipmaps = false ;
material_screen_texture_mipmaps_cached = true ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
if ( skip_item ) {
skip_item = false ;
} else {
items [ item_count + + ] = ci ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
if ( ! ci - > next | | item_count = = MAX_RENDER_ITEMS - 1 ) {
if ( update_skeletons ) {
mesh_storage - > update_mesh_instances ( ) ;
update_skeletons = false ;
}
2021-11-13 02:38:19 +00:00
2024-07-29 21:23:03 +00:00
_render_batch_items ( to_render_target , item_count , canvas_transform_inverse , p_light_list , r_sdf_used , canvas_group_owner ! = nullptr , r_render_info ) ;
//then reset
item_count = 0 ;
}
2021-05-20 14:25:06 +00:00
2024-07-29 21:23:03 +00:00
ci = ci - > next ;
}
2021-05-20 14:25:06 +00:00
2024-07-29 21:23:03 +00:00
if ( time_used ) {
RenderingServerDefault : : redraw_request ( ) ;
}
2021-05-20 14:25:06 +00:00
2024-10-29 21:27:16 +00:00
state . current_data_buffer_index = ( state . current_data_buffer_index + 1 ) % BATCH_DATA_BUFFER_COUNT ;
2024-07-29 21:23:03 +00:00
state . current_instance_buffer_index = 0 ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
RID RendererCanvasRenderRD : : light_create ( ) {
CanvasLight canvas_light ;
return canvas_light_owner . make_rid ( canvas_light ) ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : light_set_texture ( RID p_rid , RID p_texture ) {
RendererRD : : TextureStorage * texture_storage = RendererRD : : TextureStorage : : get_singleton ( ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
CanvasLight * cl = canvas_light_owner . get_or_null ( p_rid ) ;
ERR_FAIL_NULL ( cl ) ;
if ( cl - > texture = = p_texture ) {
return ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
ERR_FAIL_COND ( p_texture . is_valid ( ) & & ! texture_storage - > owns_texture ( p_texture ) ) ;
2021-05-20 14:25:06 +00:00
2024-07-29 21:23:03 +00:00
if ( cl - > texture . is_valid ( ) ) {
texture_storage - > texture_remove_from_decal_atlas ( cl - > texture ) ;
}
cl - > texture = p_texture ;
2021-05-20 14:25:06 +00:00
2024-07-29 21:23:03 +00:00
if ( cl - > texture . is_valid ( ) ) {
texture_storage - > texture_add_to_decal_atlas ( cl - > texture ) ;
}
}
2021-05-20 14:25:06 +00:00
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : light_set_use_shadow ( RID p_rid , bool p_enable ) {
CanvasLight * cl = canvas_light_owner . get_or_null ( p_rid ) ;
ERR_FAIL_NULL ( cl ) ;
2021-05-20 14:25:06 +00:00
2024-07-29 21:23:03 +00:00
cl - > shadow . enabled = p_enable ;
}
2021-05-20 14:25:06 +00:00
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : _update_shadow_atlas ( ) {
if ( state . shadow_fb = = RID ( ) ) {
//ah, we lack the shadow texture..
RD : : get_singleton ( ) - > free ( state . shadow_texture ) ; //erase placeholder
2022-12-07 18:03:08 +00:00
2024-07-29 21:23:03 +00:00
Vector < RID > fb_textures ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
{ //texture
RD : : TextureFormat tf ;
tf . texture_type = RD : : TEXTURE_TYPE_2D ;
tf . width = state . shadow_texture_size ;
tf . height = state . max_lights_per_render * 2 ;
tf . usage_bits = RD : : TEXTURE_USAGE_COLOR_ATTACHMENT_BIT | RD : : TEXTURE_USAGE_SAMPLING_BIT ;
tf . format = RD : : DATA_FORMAT_R32_SFLOAT ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
state . shadow_texture = RD : : get_singleton ( ) - > texture_create ( tf , RD : : TextureView ( ) ) ;
fb_textures . push_back ( state . shadow_texture ) ;
}
{
RD : : TextureFormat tf ;
tf . texture_type = RD : : TEXTURE_TYPE_2D ;
tf . width = state . shadow_texture_size ;
tf . height = state . max_lights_per_render * 2 ;
tf . usage_bits = RD : : TEXTURE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT ;
tf . format = RD : : DATA_FORMAT_D32_SFLOAT ;
//chunks to write
state . shadow_depth_texture = RD : : get_singleton ( ) - > texture_create ( tf , RD : : TextureView ( ) ) ;
fb_textures . push_back ( state . shadow_depth_texture ) ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
state . shadow_fb = RD : : get_singleton ( ) - > framebuffer_create ( fb_textures ) ;
}
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : light_update_shadow ( RID p_rid , int p_shadow_index , const Transform2D & p_light_xform , int p_light_mask , float p_near , float p_far , LightOccluderInstance * p_occluders ) {
CanvasLight * cl = canvas_light_owner . get_or_null ( p_rid ) ;
ERR_FAIL_COND ( ! cl - > shadow . enabled ) ;
2023-08-03 12:10:01 +00:00
2024-07-29 21:23:03 +00:00
_update_shadow_atlas ( ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
cl - > shadow . z_far = p_far ;
cl - > shadow . y_offset = float ( p_shadow_index * 2 + 1 ) / float ( state . max_lights_per_render * 2 ) ;
Vector < Color > cc ;
cc . push_back ( Color ( p_far , p_far , p_far , 1.0 ) ) ;
2019-06-16 02:45:24 +00:00
2024-10-18 18:55:00 +00:00
Projection projection ;
{
real_t fov = 90 ;
real_t nearp = p_near ;
real_t farp = p_far ;
real_t aspect = 1.0 ;
2019-06-16 02:45:24 +00:00
2024-10-18 18:55:00 +00:00
real_t ymax = nearp * Math : : tan ( Math : : deg_to_rad ( fov * 0.5 ) ) ;
real_t ymin = - ymax ;
real_t xmin = ymin * aspect ;
real_t xmax = ymax * aspect ;
2019-06-16 02:45:24 +00:00
2024-10-18 18:55:00 +00:00
projection . set_frustum ( xmin , xmax , ymin , ymax , nearp , farp ) ;
}
2019-06-16 02:45:24 +00:00
2024-10-18 18:55:00 +00:00
// Precomputed:
// Vector3 cam_target = Basis::from_euler(Vector3(0, 0, Math_TAU * ((i + 3) / 4.0))).xform(Vector3(0, 1, 0));
// projection = projection * Projection(Transform3D().looking_at(cam_targets[i], Vector3(0, 0, -1)).affine_inverse());
const Projection projections [ 4 ] = {
projection * Projection ( Vector4 ( 0 , 0 , - 1 , 0 ) , Vector4 ( 1 , 0 , 0 , 0 ) , Vector4 ( 0 , - 1 , 0 , 0 ) , Vector4 ( 0 , 0 , 0 , 1 ) ) ,
2019-06-16 02:45:24 +00:00
2024-10-18 18:55:00 +00:00
projection * Projection ( Vector4 ( - 1 , 0 , 0 , 0 ) , Vector4 ( 0 , 0 , - 1 , 0 ) , Vector4 ( 0 , - 1 , 0 , 0 ) , Vector4 ( 0 , 0 , 0 , 1 ) ) ,
2019-06-16 02:45:24 +00:00
2024-10-18 18:55:00 +00:00
projection * Projection ( Vector4 ( 0 , 0 , 1 , 0 ) , Vector4 ( - 1 , 0 , 0 , 0 ) , Vector4 ( 0 , - 1 , 0 , 0 ) , Vector4 ( 0 , 0 , 0 , 1 ) ) ,
projection * Projection ( Vector4 ( 1 , 0 , 0 , 0 ) , Vector4 ( 0 , 0 , 1 , 0 ) , Vector4 ( 0 , - 1 , 0 , 0 ) , Vector4 ( 0 , 0 , 0 , 1 ) )
} ;
2019-06-16 02:45:24 +00:00
2024-10-18 18:55:00 +00:00
for ( int i = 0 ; i < 4 ; i + + ) {
Rect2i rect ( ( state . shadow_texture_size / 4 ) * i , p_shadow_index * 2 , ( state . shadow_texture_size / 4 ) , 2 ) ;
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( state . shadow_fb , RD : : INITIAL_ACTION_CLEAR , RD : : FINAL_ACTION_STORE , RD : : INITIAL_ACTION_CLEAR , RD : : FINAL_ACTION_DISCARD , cc , 1.0 , 0 , rect ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
ShadowRenderPushConstant push_constant ;
for ( int y = 0 ; y < 4 ; y + + ) {
for ( int x = 0 ; x < 4 ; x + + ) {
2024-10-18 18:55:00 +00:00
push_constant . projection [ y * 4 + x ] = projections [ i ] . columns [ y ] [ x ] ;
2024-07-29 21:23:03 +00:00
}
}
static const Vector2 directions [ 4 ] = { Vector2 ( 1 , 0 ) , Vector2 ( 0 , 1 ) , Vector2 ( - 1 , 0 ) , Vector2 ( 0 , - 1 ) } ;
push_constant . direction [ 0 ] = directions [ i ] . x ;
push_constant . direction [ 1 ] = directions [ i ] . y ;
push_constant . z_far = p_far ;
push_constant . pad = 0 ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
LightOccluderInstance * instance = p_occluders ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
while ( instance ) {
OccluderPolygon * co = occluder_polygon_owner . get_or_null ( instance - > occluder ) ;
2023-12-05 23:48:01 +00:00
2024-07-29 21:23:03 +00:00
if ( ! co | | co - > index_array . is_null ( ) | | ! ( p_light_mask & instance - > light_mask ) ) {
instance = instance - > next ;
continue ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
_update_transform_2d_to_mat2x4 ( p_light_xform * instance - > xform_cache , push_constant . modelview ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , shadow_render . render_pipelines [ co - > cull_mode ] ) ;
RD : : get_singleton ( ) - > draw_list_bind_vertex_array ( draw_list , co - > vertex_array ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , co - > index_array ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & push_constant , sizeof ( ShadowRenderPushConstant ) ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
2021-06-17 14:30:20 +00:00
2024-07-29 21:23:03 +00:00
instance = instance - > next ;
2019-06-16 02:45:24 +00:00
}
2019-06-26 22:48:05 +00:00
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_end ( ) ;
2019-06-16 02:45:24 +00:00
}
2024-07-29 21:23:03 +00:00
}
2019-06-24 19:13:06 +00:00
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : light_update_directional_shadow ( RID p_rid , int p_shadow_index , const Transform2D & p_light_xform , int p_light_mask , float p_cull_distance , const Rect2 & p_clip_rect , LightOccluderInstance * p_occluders ) {
CanvasLight * cl = canvas_light_owner . get_or_null ( p_rid ) ;
ERR_FAIL_COND ( ! cl - > shadow . enabled ) ;
2023-07-07 17:35:54 +00:00
2024-07-29 21:23:03 +00:00
_update_shadow_atlas ( ) ;
2023-07-07 17:35:54 +00:00
2024-07-29 21:23:03 +00:00
Vector2 light_dir = p_light_xform . columns [ 1 ] . normalized ( ) ;
2023-07-07 17:35:54 +00:00
2024-07-29 21:23:03 +00:00
Vector2 center = p_clip_rect . get_center ( ) ;
2023-07-07 17:35:54 +00:00
2024-07-29 21:23:03 +00:00
float to_edge_distance = ABS ( light_dir . dot ( p_clip_rect . get_support ( - light_dir ) ) - light_dir . dot ( center ) ) ;
2023-07-07 17:35:54 +00:00
2024-07-29 21:23:03 +00:00
Vector2 from_pos = center - light_dir * ( to_edge_distance + p_cull_distance ) ;
float distance = to_edge_distance * 2.0 + p_cull_distance ;
float half_size = p_clip_rect . size . length ( ) * 0.5 ; //shadow length, must keep this no matter the angle
2023-07-07 17:35:54 +00:00
2024-07-29 21:23:03 +00:00
cl - > shadow . z_far = distance ;
cl - > shadow . y_offset = float ( p_shadow_index * 2 + 1 ) / float ( state . max_lights_per_render * 2 ) ;
2023-07-07 17:35:54 +00:00
2024-07-29 21:23:03 +00:00
Transform2D to_light_xform ;
2023-07-07 17:35:54 +00:00
2024-07-29 21:23:03 +00:00
to_light_xform [ 2 ] = from_pos ;
to_light_xform [ 1 ] = light_dir ;
to_light_xform [ 0 ] = - light_dir . orthogonal ( ) ;
2023-07-07 17:35:54 +00:00
2024-07-29 21:23:03 +00:00
to_light_xform . invert ( ) ;
2023-07-07 17:35:54 +00:00
2024-07-29 21:23:03 +00:00
Vector < Color > cc ;
cc . push_back ( Color ( 1 , 1 , 1 , 1 ) ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
Rect2i rect ( 0 , p_shadow_index * 2 , state . shadow_texture_size , 2 ) ;
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( state . shadow_fb , RD : : INITIAL_ACTION_CLEAR , RD : : FINAL_ACTION_STORE , RD : : INITIAL_ACTION_CLEAR , RD : : FINAL_ACTION_DISCARD , cc , 1.0 , 0 , rect ) ;
2022-04-07 14:00:51 +00:00
2024-07-29 21:23:03 +00:00
Projection projection ;
projection . set_orthogonal ( - half_size , half_size , - 0.5 , 0.5 , 0.0 , distance ) ;
projection = projection * Projection ( Transform3D ( ) . looking_at ( Vector3 ( 0 , 1 , 0 ) , Vector3 ( 0 , 0 , - 1 ) ) . affine_inverse ( ) ) ;
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
ShadowRenderPushConstant push_constant ;
for ( int y = 0 ; y < 4 ; y + + ) {
for ( int x = 0 ; x < 4 ; x + + ) {
push_constant . projection [ y * 4 + x ] = projection . columns [ y ] [ x ] ;
}
2020-10-24 15:15:43 +00:00
}
2024-07-29 21:23:03 +00:00
push_constant . direction [ 0 ] = 0.0 ;
push_constant . direction [ 1 ] = 1.0 ;
push_constant . z_far = distance ;
push_constant . pad = 0 ;
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
LightOccluderInstance * instance = p_occluders ;
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
while ( instance ) {
OccluderPolygon * co = occluder_polygon_owner . get_or_null ( instance - > occluder ) ;
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
if ( ! co | | co - > index_array . is_null ( ) | | ! ( p_light_mask & instance - > light_mask ) ) {
instance = instance - > next ;
continue ;
2020-10-24 15:15:43 +00:00
}
2024-07-29 21:23:03 +00:00
_update_transform_2d_to_mat2x4 ( to_light_xform * instance - > xform_cache , push_constant . modelview ) ;
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , shadow_render . render_pipelines [ co - > cull_mode ] ) ;
RD : : get_singleton ( ) - > draw_list_bind_vertex_array ( draw_list , co - > vertex_array ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , co - > index_array ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & push_constant , sizeof ( ShadowRenderPushConstant ) ) ;
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
2023-05-26 21:35:16 +00:00
2024-07-29 21:23:03 +00:00
instance = instance - > next ;
2020-10-24 15:15:43 +00:00
}
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_end ( ) ;
Transform2D to_shadow ;
to_shadow . columns [ 0 ] . x = 1.0 / - ( half_size * 2.0 ) ;
to_shadow . columns [ 2 ] . x = 0.5 ;
cl - > shadow . directional_xform = to_shadow * to_light_xform ;
2020-10-24 15:15:43 +00:00
}
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : render_sdf ( RID p_render_target , LightOccluderInstance * p_occluders ) {
2022-04-07 14:00:51 +00:00
RendererRD : : TextureStorage * texture_storage = RendererRD : : TextureStorage : : get_singleton ( ) ;
2024-07-29 21:23:03 +00:00
RID fb = texture_storage - > render_target_get_sdf_framebuffer ( p_render_target ) ;
Rect2i rect = texture_storage - > render_target_get_sdf_rect ( p_render_target ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
Transform2D to_sdf ;
to_sdf . columns [ 0 ] * = rect . size . width ;
to_sdf . columns [ 1 ] * = rect . size . height ;
to_sdf . columns [ 2 ] = rect . position ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
Transform2D to_clip ;
to_clip . columns [ 0 ] * = 2.0 ;
to_clip . columns [ 1 ] * = 2.0 ;
to_clip . columns [ 2 ] = - Vector2 ( 1.0 , 1.0 ) ;
2020-10-28 18:34:27 +00:00
2024-07-29 21:23:03 +00:00
to_clip = to_clip * to_sdf . affine_inverse ( ) ;
2020-10-28 18:34:27 +00:00
2024-07-29 21:23:03 +00:00
Vector < Color > cc ;
cc . push_back ( Color ( 0 , 0 , 0 , 0 ) ) ;
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( fb , RD : : INITIAL_ACTION_CLEAR , RD : : FINAL_ACTION_STORE , RD : : INITIAL_ACTION_CLEAR , RD : : FINAL_ACTION_DISCARD , cc ) ;
Projection projection ;
ShadowRenderPushConstant push_constant ;
for ( int y = 0 ; y < 4 ; y + + ) {
for ( int x = 0 ; x < 4 ; x + + ) {
push_constant . projection [ y * 4 + x ] = projection . columns [ y ] [ x ] ;
2020-10-28 18:34:27 +00:00
}
}
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
push_constant . direction [ 0 ] = 0.0 ;
push_constant . direction [ 1 ] = 0.0 ;
push_constant . z_far = 0 ;
push_constant . pad = 0 ;
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
LightOccluderInstance * instance = p_occluders ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
while ( instance ) {
OccluderPolygon * co = occluder_polygon_owner . get_or_null ( instance - > occluder ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
if ( ! co | | co - > sdf_index_array . is_null ( ) | | ! instance - > sdf_collision ) {
instance = instance - > next ;
continue ;
}
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
_update_transform_2d_to_mat2x4 ( to_clip * instance - > xform_cache , push_constant . modelview ) ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , shadow_render . sdf_render_pipelines [ co - > sdf_is_lines ? SHADOW_RENDER_SDF_LINES : SHADOW_RENDER_SDF_TRIANGLES ] ) ;
RD : : get_singleton ( ) - > draw_list_bind_vertex_array ( draw_list , co - > sdf_vertex_array ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , co - > sdf_index_array ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & push_constant , sizeof ( ShadowRenderPushConstant ) ) ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
instance = instance - > next ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_end ( ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
texture_storage - > render_target_sdf_process ( p_render_target ) ; //done rendering, process it
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
RID RendererCanvasRenderRD : : occluder_polygon_create ( ) {
OccluderPolygon occluder ;
occluder . line_point_count = 0 ;
occluder . sdf_point_count = 0 ;
occluder . sdf_index_count = 0 ;
occluder . cull_mode = RS : : CANVAS_OCCLUDER_POLYGON_CULL_DISABLED ;
return occluder_polygon_owner . make_rid ( occluder ) ;
}
2020-10-28 18:34:27 +00:00
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : occluder_polygon_set_shape ( RID p_occluder , const Vector < Vector2 > & p_points , bool p_closed ) {
OccluderPolygon * oc = occluder_polygon_owner . get_or_null ( p_occluder ) ;
ERR_FAIL_NULL ( oc ) ;
2020-10-28 18:34:27 +00:00
2024-07-29 21:23:03 +00:00
Vector < Vector2 > lines ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
if ( p_points . size ( ) ) {
int lc = p_points . size ( ) * 2 ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
lines . resize ( lc - ( p_closed ? 0 : 2 ) ) ;
{
Vector2 * w = lines . ptrw ( ) ;
const Vector2 * r = p_points . ptr ( ) ;
int max = lc / 2 ;
if ( ! p_closed ) {
max - - ;
}
for ( int i = 0 ; i < max ; i + + ) {
Vector2 a = r [ i ] ;
Vector2 b = r [ ( i + 1 ) % ( lc / 2 ) ] ;
w [ i * 2 + 0 ] = a ;
w [ i * 2 + 1 ] = b ;
2024-08-18 17:36:08 +00:00
}
2024-01-17 17:09:52 +00:00
}
2019-06-16 02:45:24 +00:00
}
2024-07-29 21:23:03 +00:00
if ( ( oc - > line_point_count ! = lines . size ( ) | | lines . size ( ) = = 0 ) & & oc - > vertex_array . is_valid ( ) ) {
RD : : get_singleton ( ) - > free ( oc - > vertex_array ) ;
RD : : get_singleton ( ) - > free ( oc - > vertex_buffer ) ;
RD : : get_singleton ( ) - > free ( oc - > index_array ) ;
RD : : get_singleton ( ) - > free ( oc - > index_buffer ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
oc - > vertex_array = RID ( ) ;
oc - > vertex_buffer = RID ( ) ;
oc - > index_array = RID ( ) ;
oc - > index_buffer = RID ( ) ;
2022-03-21 11:25:25 +00:00
2024-07-29 21:23:03 +00:00
oc - > line_point_count = lines . size ( ) ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
if ( lines . size ( ) ) {
oc - > line_point_count = lines . size ( ) ;
Vector < uint8_t > geometry ;
Vector < uint8_t > indices ;
int lc = lines . size ( ) ;
2019-07-10 20:44:55 +00:00
2024-07-29 21:23:03 +00:00
geometry . resize ( lc * 6 * sizeof ( float ) ) ;
indices . resize ( lc * 3 * sizeof ( uint16_t ) ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
{
uint8_t * vw = geometry . ptrw ( ) ;
float * vwptr = reinterpret_cast < float * > ( vw ) ;
uint8_t * iw = indices . ptrw ( ) ;
uint16_t * iwptr = ( uint16_t * ) iw ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
const Vector2 * lr = lines . ptr ( ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
const int POLY_HEIGHT = 16384 ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
for ( int i = 0 ; i < lc / 2 ; i + + ) {
vwptr [ i * 12 + 0 ] = lr [ i * 2 + 0 ] . x ;
vwptr [ i * 12 + 1 ] = lr [ i * 2 + 0 ] . y ;
vwptr [ i * 12 + 2 ] = POLY_HEIGHT ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
vwptr [ i * 12 + 3 ] = lr [ i * 2 + 1 ] . x ;
vwptr [ i * 12 + 4 ] = lr [ i * 2 + 1 ] . y ;
vwptr [ i * 12 + 5 ] = POLY_HEIGHT ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
vwptr [ i * 12 + 6 ] = lr [ i * 2 + 1 ] . x ;
vwptr [ i * 12 + 7 ] = lr [ i * 2 + 1 ] . y ;
vwptr [ i * 12 + 8 ] = - POLY_HEIGHT ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
vwptr [ i * 12 + 9 ] = lr [ i * 2 + 0 ] . x ;
vwptr [ i * 12 + 10 ] = lr [ i * 2 + 0 ] . y ;
vwptr [ i * 12 + 11 ] = - POLY_HEIGHT ;
2019-07-27 13:23:24 +00:00
2024-07-29 21:23:03 +00:00
iwptr [ i * 6 + 0 ] = i * 4 + 0 ;
iwptr [ i * 6 + 1 ] = i * 4 + 1 ;
iwptr [ i * 6 + 2 ] = i * 4 + 2 ;
2020-10-29 21:09:16 +00:00
2024-07-29 21:23:03 +00:00
iwptr [ i * 6 + 3 ] = i * 4 + 2 ;
iwptr [ i * 6 + 4 ] = i * 4 + 3 ;
iwptr [ i * 6 + 5 ] = i * 4 + 0 ;
2020-11-03 19:51:53 +00:00
}
2024-07-29 21:23:03 +00:00
}
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
//if same buffer len is being set, just use buffer_update to avoid a pipeline flush
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
if ( oc - > vertex_array . is_null ( ) ) {
//create from scratch
//vertices
oc - > vertex_buffer = RD : : get_singleton ( ) - > vertex_buffer_create ( lc * 6 * sizeof ( float ) , geometry ) ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
Vector < RID > buffer ;
buffer . push_back ( oc - > vertex_buffer ) ;
oc - > vertex_array = RD : : get_singleton ( ) - > vertex_array_create ( 4 * lc / 2 , shadow_render . vertex_format , buffer ) ;
//indices
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
oc - > index_buffer = RD : : get_singleton ( ) - > index_buffer_create ( 3 * lc , RD : : INDEX_BUFFER_FORMAT_UINT16 , indices ) ;
oc - > index_array = RD : : get_singleton ( ) - > index_array_create ( oc - > index_buffer , 0 , 3 * lc ) ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
} else {
//update existing
const uint8_t * vr = geometry . ptr ( ) ;
RD : : get_singleton ( ) - > buffer_update ( oc - > vertex_buffer , 0 , geometry . size ( ) , vr ) ;
const uint8_t * ir = indices . ptr ( ) ;
RD : : get_singleton ( ) - > buffer_update ( oc - > index_buffer , 0 , indices . size ( ) , ir ) ;
2020-11-03 19:51:53 +00:00
}
2019-06-16 02:45:24 +00:00
}
2024-07-29 21:23:03 +00:00
// sdf
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
Vector < int > sdf_indices ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
if ( p_points . size ( ) ) {
if ( p_closed ) {
sdf_indices = Geometry2D : : triangulate_polygon ( p_points ) ;
oc - > sdf_is_lines = false ;
} else {
int max = p_points . size ( ) ;
sdf_indices . resize ( max * 2 ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
int * iw = sdf_indices . ptrw ( ) ;
for ( int i = 0 ; i < max ; i + + ) {
iw [ i * 2 + 0 ] = i ;
iw [ i * 2 + 1 ] = ( i + 1 ) % max ;
2024-02-16 23:57:32 +00:00
}
2024-07-29 21:23:03 +00:00
oc - > sdf_is_lines = true ;
}
}
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
if ( ( ( oc - > sdf_index_count ! = sdf_indices . size ( ) & & oc - > sdf_point_count ! = p_points . size ( ) ) | | p_points . size ( ) = = 0 ) & & oc - > sdf_vertex_array . is_valid ( ) ) {
RD : : get_singleton ( ) - > free ( oc - > sdf_vertex_array ) ;
RD : : get_singleton ( ) - > free ( oc - > sdf_vertex_buffer ) ;
RD : : get_singleton ( ) - > free ( oc - > sdf_index_array ) ;
RD : : get_singleton ( ) - > free ( oc - > sdf_index_buffer ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
oc - > sdf_vertex_array = RID ( ) ;
oc - > sdf_vertex_buffer = RID ( ) ;
oc - > sdf_index_array = RID ( ) ;
oc - > sdf_index_buffer = RID ( ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
oc - > sdf_index_count = sdf_indices . size ( ) ;
oc - > sdf_point_count = p_points . size ( ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
oc - > sdf_is_lines = false ;
}
2019-07-10 20:44:55 +00:00
2024-07-29 21:23:03 +00:00
if ( sdf_indices . size ( ) ) {
if ( oc - > sdf_vertex_array . is_null ( ) ) {
//create from scratch
//vertices
# ifdef REAL_T_IS_DOUBLE
PackedFloat32Array float_points ;
float_points . resize ( p_points . size ( ) * 2 ) ;
float * float_points_ptr = ( float * ) float_points . ptrw ( ) ;
for ( int i = 0 ; i < p_points . size ( ) ; i + + ) {
float_points_ptr [ i * 2 ] = p_points [ i ] . x ;
float_points_ptr [ i * 2 + 1 ] = p_points [ i ] . y ;
2019-07-07 04:49:40 +00:00
}
2024-07-29 21:23:03 +00:00
oc - > sdf_vertex_buffer = RD : : get_singleton ( ) - > vertex_buffer_create ( p_points . size ( ) * 2 * sizeof ( float ) , float_points . to_byte_array ( ) ) ;
# else
oc - > sdf_vertex_buffer = RD : : get_singleton ( ) - > vertex_buffer_create ( p_points . size ( ) * 2 * sizeof ( float ) , p_points . to_byte_array ( ) ) ;
# endif
oc - > sdf_index_buffer = RD : : get_singleton ( ) - > index_buffer_create ( sdf_indices . size ( ) , RD : : INDEX_BUFFER_FORMAT_UINT32 , sdf_indices . to_byte_array ( ) ) ;
oc - > sdf_index_array = RD : : get_singleton ( ) - > index_array_create ( oc - > sdf_index_buffer , 0 , sdf_indices . size ( ) ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
Vector < RID > buffer ;
buffer . push_back ( oc - > sdf_vertex_buffer ) ;
oc - > sdf_vertex_array = RD : : get_singleton ( ) - > vertex_array_create ( p_points . size ( ) , shadow_render . sdf_vertex_format , buffer ) ;
//indices
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
} else {
//update existing
# ifdef REAL_T_IS_DOUBLE
PackedFloat32Array float_points ;
float_points . resize ( p_points . size ( ) * 2 ) ;
float * float_points_ptr = ( float * ) float_points . ptrw ( ) ;
for ( int i = 0 ; i < p_points . size ( ) ; i + + ) {
float_points_ptr [ i * 2 ] = p_points [ i ] . x ;
float_points_ptr [ i * 2 + 1 ] = p_points [ i ] . y ;
2020-10-24 15:15:43 +00:00
}
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > buffer_update ( oc - > sdf_vertex_buffer , 0 , sizeof ( float ) * 2 * p_points . size ( ) , float_points . ptr ( ) ) ;
# else
RD : : get_singleton ( ) - > buffer_update ( oc - > sdf_vertex_buffer , 0 , sizeof ( float ) * 2 * p_points . size ( ) , p_points . ptr ( ) ) ;
# endif
RD : : get_singleton ( ) - > buffer_update ( oc - > sdf_index_buffer , 0 , sdf_indices . size ( ) * sizeof ( int32_t ) , sdf_indices . ptr ( ) ) ;
}
}
}
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : occluder_polygon_set_cull_mode ( RID p_occluder , RS : : CanvasOccluderPolygonCullMode p_mode ) {
OccluderPolygon * oc = occluder_polygon_owner . get_or_null ( p_occluder ) ;
ERR_FAIL_NULL ( oc ) ;
oc - > cull_mode = p_mode ;
}
2019-07-05 01:54:32 +00:00
2024-03-15 17:13:31 +00:00
void RendererCanvasRenderRD : : CanvasShaderData : : _clear_vertex_input_mask_cache ( ) {
for ( uint32_t i = 0 ; i < VERTEX_INPUT_MASKS_SIZE ; i + + ) {
vertex_input_masks [ i ] . store ( 0 ) ;
}
}
void RendererCanvasRenderRD : : CanvasShaderData : : _create_pipeline ( PipelineKey p_pipeline_key ) {
# if PRINT_PIPELINE_COMPILATION_KEYS
print_line (
" HASH: " , p_pipeline_key . hash ( ) ,
" VERSION: " , version ,
" VARIANT: " , p_pipeline_key . variant ,
" FRAMEBUFFER: " , p_pipeline_key . framebuffer_format_id ,
" VERTEX: " , p_pipeline_key . vertex_format_id ,
" PRIMITIVE: " , p_pipeline_key . render_primitive ,
" SPEC PACKED #0: " , p_pipeline_key . shader_specialization . packed_0 ,
" LCD: " , p_pipeline_key . lcd_blend ) ;
# endif
RendererRD : : MaterialStorage : : ShaderData : : BlendMode blend_mode_rd = RendererRD : : MaterialStorage : : ShaderData : : BlendMode ( blend_mode ) ;
RD : : PipelineColorBlendState blend_state ;
RD : : PipelineColorBlendState : : Attachment attachment ;
uint32_t dynamic_state_flags = 0 ;
if ( p_pipeline_key . lcd_blend ) {
attachment . enable_blend = true ;
attachment . alpha_blend_op = RD : : BLEND_OP_ADD ;
attachment . color_blend_op = RD : : BLEND_OP_ADD ;
attachment . src_color_blend_factor = RD : : BLEND_FACTOR_CONSTANT_COLOR ;
attachment . dst_color_blend_factor = RD : : BLEND_FACTOR_ONE_MINUS_SRC_COLOR ;
attachment . src_alpha_blend_factor = RD : : BLEND_FACTOR_ONE ;
attachment . dst_alpha_blend_factor = RD : : BLEND_FACTOR_ONE_MINUS_SRC_ALPHA ;
dynamic_state_flags = RD : : DYNAMIC_STATE_BLEND_CONSTANTS ;
} else {
attachment = RendererRD : : MaterialStorage : : ShaderData : : blend_mode_to_blend_attachment ( blend_mode_rd ) ;
}
blend_state . attachments . push_back ( attachment ) ;
2024-10-04 13:45:59 +00:00
RD : : PipelineMultisampleState multisample_state ;
multisample_state . sample_count = RD : : get_singleton ( ) - > framebuffer_format_get_texture_samples ( p_pipeline_key . framebuffer_format_id , 0 ) ;
2024-03-15 17:13:31 +00:00
// Convert the specialization from the key to pipeline specialization constants.
Vector < RD : : PipelineSpecializationConstant > specialization_constants ;
RD : : PipelineSpecializationConstant sc ;
sc . constant_id = 0 ;
sc . int_value = p_pipeline_key . shader_specialization . packed_0 ;
sc . type = RD : : PIPELINE_SPECIALIZATION_CONSTANT_TYPE_INT ;
specialization_constants . push_back ( sc ) ;
RID shader_rid = get_shader ( p_pipeline_key . variant , p_pipeline_key . ubershader ) ;
ERR_FAIL_COND ( shader_rid . is_null ( ) ) ;
2024-10-04 13:45:59 +00:00
RID pipeline = RD : : get_singleton ( ) - > render_pipeline_create ( shader_rid , p_pipeline_key . framebuffer_format_id , p_pipeline_key . vertex_format_id , p_pipeline_key . render_primitive , RD : : PipelineRasterizationState ( ) , multisample_state , RD : : PipelineDepthStencilState ( ) , blend_state , dynamic_state_flags , 0 , specialization_constants ) ;
2024-03-15 17:13:31 +00:00
ERR_FAIL_COND ( pipeline . is_null ( ) ) ;
pipeline_hash_map . add_compiled_pipeline ( p_pipeline_key . hash ( ) , pipeline ) ;
}
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : CanvasShaderData : : set_code ( const String & p_code ) {
//compile
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
code = p_code ;
ubo_size = 0 ;
uniforms . clear ( ) ;
uses_screen_texture = false ;
uses_screen_texture_mipmaps = false ;
uses_sdf = false ;
uses_time = false ;
2024-03-15 17:13:31 +00:00
_clear_vertex_input_mask_cache ( ) ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
if ( code . is_empty ( ) ) {
return ; //just invalid, but no error
2020-11-03 19:51:53 +00:00
}
2024-07-29 21:23:03 +00:00
ShaderCompiler : : GeneratedCode gen_code ;
2020-11-03 19:51:53 +00:00
2024-03-15 17:13:31 +00:00
blend_mode = BLEND_MODE_MIX ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
ShaderCompiler : : IdentifierActions actions ;
actions . entry_point_stages [ " vertex " ] = ShaderCompiler : : STAGE_VERTEX ;
actions . entry_point_stages [ " fragment " ] = ShaderCompiler : : STAGE_FRAGMENT ;
actions . entry_point_stages [ " light " ] = ShaderCompiler : : STAGE_FRAGMENT ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
actions . render_mode_values [ " blend_add " ] = Pair < int * , int > ( & blend_mode , BLEND_MODE_ADD ) ;
actions . render_mode_values [ " blend_mix " ] = Pair < int * , int > ( & blend_mode , BLEND_MODE_MIX ) ;
actions . render_mode_values [ " blend_sub " ] = Pair < int * , int > ( & blend_mode , BLEND_MODE_SUB ) ;
actions . render_mode_values [ " blend_mul " ] = Pair < int * , int > ( & blend_mode , BLEND_MODE_MUL ) ;
2024-03-15 17:13:31 +00:00
actions . render_mode_values [ " blend_premul_alpha " ] = Pair < int * , int > ( & blend_mode , BLEND_MODE_PREMULTIPLIED_ALPHA ) ;
2024-07-29 21:23:03 +00:00
actions . render_mode_values [ " blend_disabled " ] = Pair < int * , int > ( & blend_mode , BLEND_MODE_DISABLED ) ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
actions . usage_flag_pointers [ " texture_sdf " ] = & uses_sdf ;
actions . usage_flag_pointers [ " TIME " ] = & uses_time ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
actions . uniforms = & uniforms ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
RendererCanvasRenderRD * canvas_singleton = static_cast < RendererCanvasRenderRD * > ( RendererCanvasRender : : singleton ) ;
2024-03-15 17:13:31 +00:00
MutexLock lock ( canvas_singleton - > shader . mutex ) ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
Error err = canvas_singleton - > shader . compiler . compile ( RS : : SHADER_CANVAS_ITEM , code , & actions , path , gen_code ) ;
ERR_FAIL_COND_MSG ( err ! = OK , " Shader compilation failed. " ) ;
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
uses_screen_texture_mipmaps = gen_code . uses_screen_texture_mipmaps ;
uses_screen_texture = gen_code . uses_screen_texture ;
2020-11-26 12:50:21 +00:00
2024-03-15 17:13:31 +00:00
pipeline_hash_map . clear_pipelines ( ) ;
2024-07-29 21:23:03 +00:00
if ( version . is_null ( ) ) {
version = canvas_singleton - > shader . canvas_shader . version_create ( ) ;
}
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
#if 0
print_line ( " **compiling shader: " ) ;
print_line ( " **defines: \n " ) ;
for ( int i = 0 ; i < gen_code . defines . size ( ) ; i + + ) {
print_line ( gen_code . defines [ i ] ) ;
}
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
HashMap < String , String > : : Iterator el = gen_code . code . begin ( ) ;
while ( el ) {
print_line ( " \n **code " + el - > key + " : \n " + el - > value ) ;
+ + el ;
}
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
print_line ( " \n **uniforms: \n " + gen_code . uniforms ) ;
print_line ( " \n **vertex_globals: \n " + gen_code . stage_globals [ ShaderCompiler : : STAGE_VERTEX ] ) ;
print_line ( " \n **fragment_globals: \n " + gen_code . stage_globals [ ShaderCompiler : : STAGE_FRAGMENT ] ) ;
# endif
canvas_singleton - > shader . canvas_shader . version_set_code ( version , gen_code . code , gen_code . uniforms , gen_code . stage_globals [ ShaderCompiler : : STAGE_VERTEX ] , gen_code . stage_globals [ ShaderCompiler : : STAGE_FRAGMENT ] , gen_code . defines ) ;
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
ubo_size = gen_code . uniform_total_size ;
ubo_offsets = gen_code . uniform_offsets ;
texture_uniforms = gen_code . texture_uniforms ;
2024-03-15 17:13:31 +00:00
}
2019-07-05 01:54:32 +00:00
2024-03-15 17:13:31 +00:00
bool RendererCanvasRenderRD : : CanvasShaderData : : is_animated ( ) const {
return false ;
}
2022-04-07 14:31:45 +00:00
2024-03-15 17:13:31 +00:00
bool RendererCanvasRenderRD : : CanvasShaderData : : casts_shadows ( ) const {
return false ;
}
2019-06-16 02:45:24 +00:00
2024-03-15 17:13:31 +00:00
RS : : ShaderNativeSourceCode RendererCanvasRenderRD : : CanvasShaderData : : get_native_source_code ( ) const {
RendererCanvasRenderRD * canvas_singleton = static_cast < RendererCanvasRenderRD * > ( RendererCanvasRender : : singleton ) ;
MutexLock lock ( canvas_singleton - > shader . mutex ) ;
return canvas_singleton - > shader . canvas_shader . version_get_native_source_code ( version ) ;
}
2024-07-29 21:23:03 +00:00
2024-03-15 17:13:31 +00:00
RID RendererCanvasRenderRD : : CanvasShaderData : : get_shader ( ShaderVariant p_shader_variant , bool p_ubershader ) const {
if ( version . is_valid ( ) ) {
uint32_t variant_index = p_shader_variant + ( p_ubershader ? SHADER_VARIANT_MAX : 0 ) ;
RendererCanvasRenderRD * canvas_singleton = static_cast < RendererCanvasRenderRD * > ( RendererCanvasRender : : singleton ) ;
MutexLock lock ( canvas_singleton - > shader . mutex ) ;
return canvas_singleton - > shader . canvas_shader . version_get_shader ( version , variant_index ) ;
} else {
return RID ( ) ;
2024-07-29 21:23:03 +00:00
}
2024-03-15 17:13:31 +00:00
}
2024-07-29 21:23:03 +00:00
2024-03-15 17:13:31 +00:00
uint64_t RendererCanvasRenderRD : : CanvasShaderData : : get_vertex_input_mask ( ShaderVariant p_shader_variant , bool p_ubershader ) {
// Vertex input masks require knowledge of the shader. Since querying the shader can be expensive due to high contention and the necessary mutex, we cache the result instead.
uint32_t input_mask_index = p_shader_variant + ( p_ubershader ? SHADER_VARIANT_MAX : 0 ) ;
uint64_t input_mask = vertex_input_masks [ input_mask_index ] . load ( std : : memory_order_relaxed ) ;
if ( input_mask = = 0 ) {
RID shader_rid = get_shader ( p_shader_variant , p_ubershader ) ;
ERR_FAIL_COND_V ( shader_rid . is_null ( ) , 0 ) ;
2024-07-29 21:23:03 +00:00
2024-03-15 17:13:31 +00:00
input_mask = RD : : get_singleton ( ) - > shader_get_vertex_input_attribute_mask ( shader_rid ) ;
vertex_input_masks [ input_mask_index ] . store ( input_mask , std : : memory_order_relaxed ) ;
2024-07-29 21:23:03 +00:00
}
2019-07-21 14:31:30 +00:00
2024-03-15 17:13:31 +00:00
return input_mask ;
2024-07-29 21:23:03 +00:00
}
2019-07-29 18:29:43 +00:00
2024-03-15 17:13:31 +00:00
bool RendererCanvasRenderRD : : CanvasShaderData : : is_valid ( ) const {
RendererCanvasRenderRD * canvas_singleton = static_cast < RendererCanvasRenderRD * > ( RendererCanvasRender : : singleton ) ;
MutexLock lock ( canvas_singleton - > shader . mutex ) ;
return canvas_singleton - > shader . canvas_shader . version_is_valid ( version ) ;
2024-07-29 21:23:03 +00:00
}
2019-07-21 14:31:30 +00:00
2024-03-15 17:13:31 +00:00
RendererCanvasRenderRD : : CanvasShaderData : : CanvasShaderData ( ) {
2024-07-29 21:23:03 +00:00
RendererCanvasRenderRD * canvas_singleton = static_cast < RendererCanvasRenderRD * > ( RendererCanvasRender : : singleton ) ;
2024-03-15 17:13:31 +00:00
pipeline_hash_map . set_creation_object_and_function ( this , & CanvasShaderData : : _create_pipeline ) ;
pipeline_hash_map . set_compilations ( & canvas_singleton - > shader . pipeline_compilations [ 0 ] , & canvas_singleton - > shader . mutex ) ;
2024-07-29 21:23:03 +00:00
}
2021-05-10 16:12:44 +00:00
2024-07-29 21:23:03 +00:00
RendererCanvasRenderRD : : CanvasShaderData : : ~ CanvasShaderData ( ) {
2024-03-15 17:13:31 +00:00
pipeline_hash_map . clear_pipelines ( ) ;
2024-07-29 21:23:03 +00:00
if ( version . is_valid ( ) ) {
2024-03-15 17:13:31 +00:00
RendererCanvasRenderRD * canvas_singleton = static_cast < RendererCanvasRenderRD * > ( RendererCanvasRender : : singleton ) ;
MutexLock lock ( canvas_singleton - > shader . mutex ) ;
2024-07-29 21:23:03 +00:00
canvas_singleton - > shader . canvas_shader . version_free ( version ) ;
}
}
2021-05-10 16:12:44 +00:00
2024-07-29 21:23:03 +00:00
RendererRD : : MaterialStorage : : ShaderData * RendererCanvasRenderRD : : _create_shader_func ( ) {
CanvasShaderData * shader_data = memnew ( CanvasShaderData ) ;
return shader_data ;
}
2022-04-07 14:31:45 +00:00
2024-07-29 21:23:03 +00:00
bool RendererCanvasRenderRD : : CanvasMaterialData : : update_parameters ( const HashMap < StringName , Variant > & p_parameters , bool p_uniform_dirty , bool p_textures_dirty ) {
RendererCanvasRenderRD * canvas_singleton = static_cast < RendererCanvasRenderRD * > ( RendererCanvasRender : : singleton ) ;
2024-03-15 17:13:31 +00:00
MutexLock lock ( canvas_singleton - > shader . mutex ) ;
RID shader_to_update = canvas_singleton - > shader . canvas_shader . version_get_shader ( shader_data - > version , 0 ) ;
bool uniform_set_changed = update_parameters_uniform_set ( p_parameters , p_uniform_dirty , p_textures_dirty , shader_data - > uniforms , shader_data - > ubo_offsets . ptr ( ) , shader_data - > texture_uniforms , shader_data - > default_texture_params , shader_data - > ubo_size , uniform_set , shader_to_update , MATERIAL_UNIFORM_SET , true , false ) ;
bool uniform_set_srgb_changed = update_parameters_uniform_set ( p_parameters , p_uniform_dirty , p_textures_dirty , shader_data - > uniforms , shader_data - > ubo_offsets . ptr ( ) , shader_data - > texture_uniforms , shader_data - > default_texture_params , shader_data - > ubo_size , uniform_set_srgb , shader_to_update , MATERIAL_UNIFORM_SET , false , false ) ;
2024-07-29 21:23:03 +00:00
return uniform_set_changed | | uniform_set_srgb_changed ;
}
2020-10-28 18:34:27 +00:00
2024-07-29 21:23:03 +00:00
RendererCanvasRenderRD : : CanvasMaterialData : : ~ CanvasMaterialData ( ) {
free_parameters_uniform_set ( uniform_set ) ;
free_parameters_uniform_set ( uniform_set_srgb ) ;
}
2020-10-28 18:34:27 +00:00
2024-07-29 21:23:03 +00:00
RendererRD : : MaterialStorage : : MaterialData * RendererCanvasRenderRD : : _create_material_func ( CanvasShaderData * p_shader ) {
CanvasMaterialData * material_data = memnew ( CanvasMaterialData ) ;
material_data - > shader_data = p_shader ;
//update will happen later anyway so do nothing.
return material_data ;
}
2020-10-28 18:34:27 +00:00
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : set_time ( double p_time ) {
state . time = p_time ;
}
2020-10-28 18:34:27 +00:00
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : update ( ) {
}
2022-04-07 14:31:45 +00:00
2024-07-29 21:23:03 +00:00
RendererCanvasRenderRD : : RendererCanvasRenderRD ( ) {
RendererRD : : TextureStorage * texture_storage = RendererRD : : TextureStorage : : get_singleton ( ) ;
RendererRD : : MaterialStorage * material_storage = RendererRD : : MaterialStorage : : get_singleton ( ) ;
2021-05-10 16:12:44 +00:00
2024-07-29 21:23:03 +00:00
{ //create default samplers
2020-10-28 18:34:27 +00:00
2024-07-29 21:23:03 +00:00
default_samplers . default_filter = RS : : CANVAS_ITEM_TEXTURE_FILTER_LINEAR ;
default_samplers . default_repeat = RS : : CANVAS_ITEM_TEXTURE_REPEAT_DISABLED ;
}
2020-10-28 18:34:27 +00:00
2024-10-29 21:27:16 +00:00
// preallocate 5 slots for uniform set 3
state . batch_texture_uniforms . resize ( 5 ) ;
2024-07-29 21:23:03 +00:00
{ //shader variants
2023-03-07 06:09:39 +00:00
2024-07-29 21:23:03 +00:00
String global_defines ;
uint64_t uniform_max_size = RD : : get_singleton ( ) - > limit_get ( RD : : LIMIT_MAX_UNIFORM_BUFFER_SIZE ) ;
if ( uniform_max_size < 65536 ) {
//Yes, you guessed right, ARM again
state . max_lights_per_render = 64 ;
global_defines + = " #define MAX_LIGHTS 64 \n " ;
2023-03-07 06:09:39 +00:00
} else {
2024-07-29 21:23:03 +00:00
state . max_lights_per_render = DEFAULT_MAX_LIGHTS_PER_RENDER ;
global_defines + = " #define MAX_LIGHTS " + itos ( DEFAULT_MAX_LIGHTS_PER_RENDER ) + " \n " ;
2020-10-28 18:34:27 +00:00
}
2024-07-29 21:23:03 +00:00
global_defines + = " \n #define SAMPLERS_BINDING_FIRST_INDEX " + itos ( SAMPLERS_BINDING_FIRST_INDEX ) + " \n " ;
2022-04-07 14:31:45 +00:00
2024-07-29 21:23:03 +00:00
state . light_uniforms = memnew_arr ( LightUniform , state . max_lights_per_render ) ;
Vector < String > variants ;
2024-03-15 17:13:31 +00:00
const uint32_t ubershader_iterations = 1 ;
for ( uint32_t ubershader = 0 ; ubershader < ubershader_iterations ; ubershader + + ) {
const String base_define = ubershader ? " \n #define UBERSHADER \n " : " " ;
variants . push_back ( base_define + " " ) ; // SHADER_VARIANT_QUAD
variants . push_back ( base_define + " #define USE_NINEPATCH \n " ) ; // SHADER_VARIANT_NINEPATCH
variants . push_back ( base_define + " #define USE_PRIMITIVE \n " ) ; // SHADER_VARIANT_PRIMITIVE
variants . push_back ( base_define + " #define USE_PRIMITIVE \n #define USE_POINT_SIZE \n " ) ; // SHADER_VARIANT_PRIMITIVE_POINTS
variants . push_back ( base_define + " #define USE_ATTRIBUTES \n " ) ; // SHADER_VARIANT_ATTRIBUTES
variants . push_back ( base_define + " #define USE_ATTRIBUTES \n #define USE_POINT_SIZE \n " ) ; // SHADER_VARIANT_ATTRIBUTES_POINTS
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
shader . canvas_shader . initialize ( variants , global_defines ) ;
2024-03-15 17:13:31 +00:00
shader . default_version_data = memnew ( CanvasShaderData ) ;
shader . default_version_data - > version = shader . canvas_shader . version_create ( ) ;
shader . default_version_data - > blend_mode = RendererRD : : MaterialStorage : : ShaderData : : BLEND_MODE_MIX ;
shader . default_version_rd_shader = shader . default_version_data - > get_shader ( SHADER_VARIANT_QUAD , false ) ;
2024-07-29 21:23:03 +00:00
}
2022-09-15 00:36:39 +00:00
2024-07-29 21:23:03 +00:00
{
//shader compiler
ShaderCompiler : : DefaultIdentifierActions actions ;
2022-09-15 00:36:39 +00:00
2024-07-29 21:23:03 +00:00
actions . renames [ " VERTEX " ] = " vertex " ;
actions . renames [ " LIGHT_VERTEX " ] = " light_vertex " ;
actions . renames [ " SHADOW_VERTEX " ] = " shadow_vertex " ;
actions . renames [ " UV " ] = " uv " ;
actions . renames [ " POINT_SIZE " ] = " point_size " ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
actions . renames [ " MODEL_MATRIX " ] = " model_matrix " ;
actions . renames [ " CANVAS_MATRIX " ] = " canvas_data.canvas_transform " ;
actions . renames [ " SCREEN_MATRIX " ] = " canvas_data.screen_transform " ;
actions . renames [ " TIME " ] = " canvas_data.time " ;
actions . renames [ " PI " ] = _MKSTR ( Math_PI ) ;
actions . renames [ " TAU " ] = _MKSTR ( Math_TAU ) ;
actions . renames [ " E " ] = _MKSTR ( Math_E ) ;
actions . renames [ " AT_LIGHT_PASS " ] = " false " ;
actions . renames [ " INSTANCE_CUSTOM " ] = " instance_custom " ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
actions . renames [ " COLOR " ] = " color " ;
actions . renames [ " NORMAL " ] = " normal " ;
actions . renames [ " NORMAL_MAP " ] = " normal_map " ;
actions . renames [ " NORMAL_MAP_DEPTH " ] = " normal_map_depth " ;
actions . renames [ " TEXTURE " ] = " color_texture " ;
actions . renames [ " TEXTURE_PIXEL_SIZE " ] = " draw_data.color_texture_pixel_size " ;
actions . renames [ " NORMAL_TEXTURE " ] = " normal_texture " ;
actions . renames [ " SPECULAR_SHININESS_TEXTURE " ] = " specular_texture " ;
actions . renames [ " SPECULAR_SHININESS " ] = " specular_shininess " ;
actions . renames [ " SCREEN_UV " ] = " screen_uv " ;
actions . renames [ " SCREEN_PIXEL_SIZE " ] = " canvas_data.screen_pixel_size " ;
actions . renames [ " FRAGCOORD " ] = " gl_FragCoord " ;
actions . renames [ " POINT_COORD " ] = " gl_PointCoord " ;
actions . renames [ " INSTANCE_ID " ] = " gl_InstanceIndex " ;
actions . renames [ " VERTEX_ID " ] = " gl_VertexIndex " ;
2021-05-10 16:12:44 +00:00
2024-07-29 21:23:03 +00:00
actions . renames [ " CUSTOM0 " ] = " custom0 " ;
actions . renames [ " CUSTOM1 " ] = " custom1 " ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
actions . renames [ " LIGHT_POSITION " ] = " light_position " ;
actions . renames [ " LIGHT_DIRECTION " ] = " light_direction " ;
actions . renames [ " LIGHT_IS_DIRECTIONAL " ] = " is_directional " ;
actions . renames [ " LIGHT_COLOR " ] = " light_color " ;
actions . renames [ " LIGHT_ENERGY " ] = " light_energy " ;
actions . renames [ " LIGHT " ] = " light " ;
actions . renames [ " SHADOW_MODULATE " ] = " shadow_modulate " ;
2021-05-20 14:25:06 +00:00
2024-07-29 21:23:03 +00:00
actions . renames [ " texture_sdf " ] = " texture_sdf " ;
actions . renames [ " texture_sdf_normal " ] = " texture_sdf_normal " ;
actions . renames [ " sdf_to_screen_uv " ] = " sdf_to_screen_uv " ;
actions . renames [ " screen_uv_to_sdf " ] = " screen_uv_to_sdf " ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
actions . usage_defines [ " COLOR " ] = " #define COLOR_USED \n " ;
actions . usage_defines [ " SCREEN_UV " ] = " #define SCREEN_UV_USED \n " ;
actions . usage_defines [ " SCREEN_PIXEL_SIZE " ] = " @SCREEN_UV " ;
actions . usage_defines [ " NORMAL " ] = " #define NORMAL_USED \n " ;
actions . usage_defines [ " NORMAL_MAP " ] = " #define NORMAL_MAP_USED \n " ;
actions . usage_defines [ " SPECULAR_SHININESS " ] = " #define SPECULAR_SHININESS_USED \n " ;
actions . usage_defines [ " POINT_SIZE " ] = " #define USE_POINT_SIZE \n " ;
actions . usage_defines [ " CUSTOM0 " ] = " #define CUSTOM0_USED \n " ;
actions . usage_defines [ " CUSTOM1 " ] = " #define CUSTOM1_USED \n " ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
actions . render_mode_defines [ " skip_vertex_transform " ] = " #define SKIP_TRANSFORM_USED \n " ;
actions . render_mode_defines [ " unshaded " ] = " #define MODE_UNSHADED \n " ;
actions . render_mode_defines [ " light_only " ] = " #define MODE_LIGHT_ONLY \n " ;
actions . render_mode_defines [ " world_vertex_coords " ] = " #define USE_WORLD_VERTEX_COORDS \n " ;
2022-03-20 11:28:24 +00:00
2024-07-29 21:23:03 +00:00
actions . custom_samplers [ " TEXTURE " ] = " texture_sampler " ;
actions . custom_samplers [ " NORMAL_TEXTURE " ] = " texture_sampler " ;
actions . custom_samplers [ " SPECULAR_SHININESS_TEXTURE " ] = " texture_sampler " ;
actions . base_texture_binding_index = 1 ;
actions . texture_layout_set = MATERIAL_UNIFORM_SET ;
actions . base_uniform_string = " material. " ;
actions . default_filter = ShaderLanguage : : FILTER_LINEAR ;
actions . default_repeat = ShaderLanguage : : REPEAT_DISABLE ;
actions . base_varying_index = 5 ;
2023-01-31 04:59:53 +00:00
2024-07-29 21:23:03 +00:00
actions . global_buffer_array_variable = " global_shader_uniforms.data " ;
2023-01-31 04:59:53 +00:00
2024-07-29 21:23:03 +00:00
shader . compiler . initialize ( actions ) ;
2020-10-24 15:15:43 +00:00
}
2024-07-29 21:23:03 +00:00
{ //shadow rendering
Vector < String > versions ;
versions . push_back ( " \n #define MODE_SHADOW \n " ) ; //shadow
versions . push_back ( " \n #define MODE_SDF \n " ) ; //sdf
shadow_render . shader . initialize ( versions ) ;
2020-05-14 12:29:06 +00:00
2024-07-29 21:23:03 +00:00
{
Vector < RD : : AttachmentFormat > attachments ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
RD : : AttachmentFormat af_color ;
af_color . format = RD : : DATA_FORMAT_R32_SFLOAT ;
af_color . usage_flags = RD : : TEXTURE_USAGE_SAMPLING_BIT | RD : : TEXTURE_USAGE_COLOR_ATTACHMENT_BIT ;
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
attachments . push_back ( af_color ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
RD : : AttachmentFormat af_depth ;
af_depth . format = RD : : DATA_FORMAT_D32_SFLOAT ;
af_depth . usage_flags = RD : : TEXTURE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT ;
2019-07-07 04:49:40 +00:00
2024-07-29 21:23:03 +00:00
attachments . push_back ( af_depth ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
shadow_render . framebuffer_format = RD : : get_singleton ( ) - > framebuffer_format_create ( attachments ) ;
2019-07-05 01:54:32 +00:00
}
2019-07-07 04:49:40 +00:00
2024-07-29 21:23:03 +00:00
{
Vector < RD : : AttachmentFormat > attachments ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
RD : : AttachmentFormat af_color ;
af_color . format = RD : : DATA_FORMAT_R8_UNORM ;
af_color . usage_flags = RD : : TEXTURE_USAGE_SAMPLING_BIT | RD : : TEXTURE_USAGE_STORAGE_BIT | RD : : TEXTURE_USAGE_COLOR_ATTACHMENT_BIT ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
attachments . push_back ( af_color ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
shadow_render . sdf_framebuffer_format = RD : : get_singleton ( ) - > framebuffer_format_create ( attachments ) ;
}
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
//pipelines
Vector < RD : : VertexAttribute > vf ;
RD : : VertexAttribute vd ;
vd . format = RD : : DATA_FORMAT_R32G32B32_SFLOAT ;
vd . stride = sizeof ( float ) * 3 ;
vd . location = 0 ;
vd . offset = 0 ;
vf . push_back ( vd ) ;
shadow_render . vertex_format = RD : : get_singleton ( ) - > vertex_format_create ( vf ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
vd . format = RD : : DATA_FORMAT_R32G32_SFLOAT ;
vd . stride = sizeof ( float ) * 2 ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
vf . write [ 0 ] = vd ;
shadow_render . sdf_vertex_format = RD : : get_singleton ( ) - > vertex_format_create ( vf ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
shadow_render . shader_version = shadow_render . shader . version_create ( ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
for ( int i = 0 ; i < 3 ; i + + ) {
RD : : PipelineRasterizationState rs ;
rs . cull_mode = i = = 0 ? RD : : POLYGON_CULL_DISABLED : ( i = = 1 ? RD : : POLYGON_CULL_FRONT : RD : : POLYGON_CULL_BACK ) ;
RD : : PipelineDepthStencilState ds ;
ds . enable_depth_write = true ;
ds . enable_depth_test = true ;
ds . depth_compare_operator = RD : : COMPARE_OP_LESS ;
shadow_render . render_pipelines [ i ] = RD : : get_singleton ( ) - > render_pipeline_create ( shadow_render . shader . version_get_shader ( shadow_render . shader_version , SHADOW_RENDER_MODE_SHADOW ) , shadow_render . framebuffer_format , shadow_render . vertex_format , RD : : RENDER_PRIMITIVE_TRIANGLES , rs , RD : : PipelineMultisampleState ( ) , ds , RD : : PipelineColorBlendState : : create_disabled ( ) , 0 ) ;
2019-07-05 01:54:32 +00:00
}
2024-07-29 21:23:03 +00:00
for ( int i = 0 ; i < 2 ; i + + ) {
shadow_render . sdf_render_pipelines [ i ] = RD : : get_singleton ( ) - > render_pipeline_create ( shadow_render . shader . version_get_shader ( shadow_render . shader_version , SHADOW_RENDER_MODE_SDF ) , shadow_render . sdf_framebuffer_format , shadow_render . sdf_vertex_format , i = = 0 ? RD : : RENDER_PRIMITIVE_TRIANGLES : RD : : RENDER_PRIMITIVE_LINES , RD : : PipelineRasterizationState ( ) , RD : : PipelineMultisampleState ( ) , RD : : PipelineDepthStencilState ( ) , RD : : PipelineColorBlendState : : create_disabled ( ) , 0 ) ;
2019-07-05 01:54:32 +00:00
}
2024-07-29 21:23:03 +00:00
}
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
{ //bindings
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
state . canvas_state_buffer = RD : : get_singleton ( ) - > uniform_buffer_create ( sizeof ( State : : Buffer ) ) ;
state . lights_uniform_buffer = RD : : get_singleton ( ) - > uniform_buffer_create ( sizeof ( LightUniform ) * state . max_lights_per_render ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
RD : : SamplerState shadow_sampler_state ;
shadow_sampler_state . mag_filter = RD : : SAMPLER_FILTER_LINEAR ;
shadow_sampler_state . min_filter = RD : : SAMPLER_FILTER_LINEAR ;
shadow_sampler_state . repeat_u = RD : : SAMPLER_REPEAT_MODE_REPEAT ; //shadow wrap around
shadow_sampler_state . compare_op = RD : : COMPARE_OP_GREATER ;
shadow_sampler_state . enable_compare = true ;
state . shadow_sampler = RD : : get_singleton ( ) - > sampler_create ( shadow_sampler_state ) ;
}
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
{
//polygon buffers
polygon_buffers . last_id = 1 ;
}
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
{ // default index buffer
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
Vector < uint8_t > pv ;
pv . resize ( 6 * 2 ) ;
{
uint8_t * w = pv . ptrw ( ) ;
uint16_t * p16 = ( uint16_t * ) w ;
p16 [ 0 ] = 0 ;
p16 [ 1 ] = 1 ;
p16 [ 2 ] = 2 ;
p16 [ 3 ] = 0 ;
p16 [ 4 ] = 2 ;
p16 [ 5 ] = 3 ;
2019-07-05 01:54:32 +00:00
}
2024-07-29 21:23:03 +00:00
shader . quad_index_buffer = RD : : get_singleton ( ) - > index_buffer_create ( 6 , RenderingDevice : : INDEX_BUFFER_FORMAT_UINT16 , pv ) ;
shader . quad_index_array = RD : : get_singleton ( ) - > index_array_create ( shader . quad_index_buffer , 0 , 6 ) ;
}
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
{ //primitive
2024-09-16 20:32:49 +00:00
primitive_arrays . index_array [ 0 ] = RD : : get_singleton ( ) - > index_array_create ( shader . quad_index_buffer , 0 , 1 ) ;
primitive_arrays . index_array [ 1 ] = RD : : get_singleton ( ) - > index_array_create ( shader . quad_index_buffer , 0 , 2 ) ;
primitive_arrays . index_array [ 2 ] = RD : : get_singleton ( ) - > index_array_create ( shader . quad_index_buffer , 0 , 3 ) ;
primitive_arrays . index_array [ 3 ] = RD : : get_singleton ( ) - > index_array_create ( shader . quad_index_buffer , 0 , 6 ) ;
2019-07-05 01:54:32 +00:00
}
2024-07-29 21:23:03 +00:00
{
//default shadow texture to keep uniform set happy
RD : : TextureFormat tf ;
tf . texture_type = RD : : TEXTURE_TYPE_2D ;
tf . width = 4 ;
tf . height = 4 ;
tf . usage_bits = RD : : TEXTURE_USAGE_SAMPLING_BIT ;
tf . format = RD : : DATA_FORMAT_R32_SFLOAT ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
state . shadow_texture = RD : : get_singleton ( ) - > texture_create ( tf , RD : : TextureView ( ) ) ;
}
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
{
Vector < RD : : Uniform > uniforms ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_STORAGE_BUFFER ;
u . binding = 0 ;
u . append_id ( RendererRD : : MeshStorage : : get_singleton ( ) - > get_default_rd_storage_buffer ( ) ) ;
uniforms . push_back ( u ) ;
}
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
state . default_transforms_uniform_set = RD : : get_singleton ( ) - > uniform_set_create ( uniforms , shader . default_version_rd_shader , TRANSFORMS_UNIFORM_SET ) ;
}
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
default_canvas_texture = texture_storage - > canvas_texture_allocate ( ) ;
texture_storage - > canvas_texture_initialize ( default_canvas_texture ) ;
2020-11-03 19:51:53 +00:00
2024-09-27 18:05:46 +00:00
RendererRD : : TextureStorage : : CanvasTextureInfo info = RendererRD : : TextureStorage : : get_singleton ( ) - > canvas_texture_get_info ( default_canvas_texture , default_filter , default_repeat , false , false ) ;
default_texture_info . diffuse = info . diffuse ;
default_texture_info . normal = info . normal ;
default_texture_info . specular = info . specular ;
default_texture_info . sampler = info . sampler ;
2024-07-29 21:23:03 +00:00
state . shadow_texture_size = GLOBAL_GET ( " rendering/2d/shadow_atlas/size " ) ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
//create functions for shader and material
material_storage - > shader_set_data_request_function ( RendererRD : : MaterialStorage : : SHADER_TYPE_2D , _create_shader_funcs ) ;
material_storage - > material_set_data_request_function ( RendererRD : : MaterialStorage : : SHADER_TYPE_2D , _create_material_funcs ) ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
state . time = 0 ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
{
default_canvas_group_shader = material_storage - > shader_allocate ( ) ;
material_storage - > shader_initialize ( default_canvas_group_shader ) ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
material_storage - > shader_set_code ( default_canvas_group_shader , R " (
// Default CanvasGroup shader.
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
shader_type canvas_item ;
render_mode unshaded ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
uniform sampler2D screen_texture : hint_screen_texture , repeat_disable , filter_nearest ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
void fragment ( ) {
vec4 c = textureLod ( screen_texture , SCREEN_UV , 0.0 ) ;
if ( c . a > 0.0001 ) {
c . rgb / = c . a ;
2020-11-03 19:51:53 +00:00
}
2024-07-29 21:23:03 +00:00
COLOR * = c ;
}
) " );
default_canvas_group_material = material_storage - > material_allocate ( ) ;
material_storage - > material_initialize ( default_canvas_group_material ) ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
material_storage - > material_set_shader ( default_canvas_group_material , default_canvas_group_shader ) ;
}
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
{
default_clip_children_shader = material_storage - > shader_allocate ( ) ;
material_storage - > shader_initialize ( default_clip_children_shader ) ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
material_storage - > shader_set_code ( default_clip_children_shader , R " (
// Default clip children shader.
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
shader_type canvas_item ;
render_mode unshaded ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
uniform sampler2D screen_texture : hint_screen_texture , repeat_disable , filter_nearest ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
void fragment ( ) {
vec4 c = textureLod ( screen_texture , SCREEN_UV , 0.0 ) ;
COLOR . rgb = c . rgb ;
}
) " );
default_clip_children_material = material_storage - > material_allocate ( ) ;
material_storage - > material_initialize ( default_clip_children_material ) ;
2020-11-03 19:51:53 +00:00
2024-07-29 21:23:03 +00:00
material_storage - > material_set_shader ( default_clip_children_material , default_clip_children_shader ) ;
2020-11-03 19:51:53 +00:00
}
2024-10-29 21:27:16 +00:00
{
uint32_t cache_size = uint32_t ( GLOBAL_GET ( " rendering/2d/batching/uniform_set_cache_size " ) ) ;
rid_set_to_uniform_set . set_capacity ( cache_size ) ;
}
2024-07-29 21:23:03 +00:00
{
state . max_instances_per_buffer = uint32_t ( GLOBAL_GET ( " rendering/2d/batching/item_buffer_size " ) ) ;
state . max_instance_buffer_size = state . max_instances_per_buffer * sizeof ( InstanceData ) ;
state . canvas_instance_batches . reserve ( 200 ) ;
2020-11-03 19:51:53 +00:00
2024-10-29 21:27:16 +00:00
for ( uint32_t i = 0 ; i < BATCH_DATA_BUFFER_COUNT ; i + + ) {
DataBuffer & db = state . canvas_instance_data_buffers [ i ] ;
2024-07-29 21:23:03 +00:00
db . instance_buffers . push_back ( RD : : get_singleton ( ) - > storage_buffer_create ( state . max_instance_buffer_size ) ) ;
}
state . instance_data_array = memnew_arr ( InstanceData , state . max_instances_per_buffer ) ;
}
2020-11-03 19:51:53 +00:00
}
2024-07-29 21:23:03 +00:00
bool RendererCanvasRenderRD : : free ( RID p_rid ) {
if ( canvas_light_owner . owns ( p_rid ) ) {
CanvasLight * cl = canvas_light_owner . get_or_null ( p_rid ) ;
ERR_FAIL_NULL_V ( cl , false ) ;
light_set_use_shadow ( p_rid , false ) ;
canvas_light_owner . free ( p_rid ) ;
} else if ( occluder_polygon_owner . owns ( p_rid ) ) {
occluder_polygon_set_shape ( p_rid , Vector < Vector2 > ( ) , false ) ;
occluder_polygon_owner . free ( p_rid ) ;
} else {
return false ;
}
2022-04-07 14:00:51 +00:00
2024-07-29 21:23:03 +00:00
return true ;
}
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : set_shadow_texture_size ( int p_size ) {
p_size = MAX ( 1 , nearest_power_of_2_templated ( p_size ) ) ;
if ( p_size = = state . shadow_texture_size ) {
return ;
}
state . shadow_texture_size = p_size ;
if ( state . shadow_fb . is_valid ( ) ) {
RD : : get_singleton ( ) - > free ( state . shadow_texture ) ;
RD : : get_singleton ( ) - > free ( state . shadow_depth_texture ) ;
state . shadow_fb = RID ( ) ;
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
{
//create a default shadow texture to keep uniform set happy (and that it gets erased when a new one is created)
RD : : TextureFormat tf ;
tf . texture_type = RD : : TEXTURE_TYPE_2D ;
tf . width = 4 ;
tf . height = 4 ;
tf . usage_bits = RD : : TEXTURE_USAGE_SAMPLING_BIT ;
tf . format = RD : : DATA_FORMAT_R32_SFLOAT ;
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
state . shadow_texture = RD : : get_singleton ( ) - > texture_create ( tf , RD : : TextureView ( ) ) ;
}
}
}
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : set_debug_redraw ( bool p_enabled , double p_time , const Color & p_color ) {
debug_redraw = p_enabled ;
debug_redraw_time = p_time ;
debug_redraw_color = p_color ;
}
2020-11-26 12:50:21 +00:00
2024-03-15 17:13:31 +00:00
uint32_t RendererCanvasRenderRD : : get_pipeline_compilations ( RS : : PipelineSource p_source ) {
RendererCanvasRenderRD * canvas_singleton = static_cast < RendererCanvasRenderRD * > ( RendererCanvasRender : : singleton ) ;
MutexLock lock ( canvas_singleton - > shader . mutex ) ;
return shader . pipeline_compilations [ p_source ] ;
}
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : _render_batch_items ( RenderTarget p_to_render_target , int p_item_count , const Transform2D & p_canvas_transform_inverse , Light * p_lights , bool & r_sdf_used , bool p_to_backbuffer , RenderingMethod : : RenderInfo * r_render_info ) {
// Record batches
uint32_t instance_index = 0 ;
{
RendererRD : : MaterialStorage * material_storage = RendererRD : : MaterialStorage : : get_singleton ( ) ;
Item * current_clip = nullptr ;
// Record Batches.
// First item always forms its own batch.
bool batch_broken = false ;
Batch * current_batch = _new_batch ( batch_broken ) ;
// Override the start position and index as we want to start from where we finished off last time.
current_batch - > start = state . last_instance_index ;
for ( int i = 0 ; i < p_item_count ; i + + ) {
Item * ci = items [ i ] ;
if ( ci - > final_clip_owner ! = current_batch - > clip ) {
current_batch = _new_batch ( batch_broken ) ;
current_batch - > clip = ci - > final_clip_owner ;
current_clip = ci - > final_clip_owner ;
}
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
RID material = ci - > material_owner = = nullptr ? ci - > material : ci - > material_owner - > material ;
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
if ( ci - > use_canvas_group ) {
if ( ci - > canvas_group - > mode = = RS : : CANVAS_GROUP_MODE_CLIP_AND_DRAW ) {
material = default_clip_children_material ;
} else {
if ( material . is_null ( ) ) {
if ( ci - > canvas_group - > mode = = RS : : CANVAS_GROUP_MODE_CLIP_ONLY ) {
material = default_clip_children_material ;
} else {
material = default_canvas_group_material ;
}
}
}
}
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
if ( material ! = current_batch - > material ) {
current_batch = _new_batch ( batch_broken ) ;
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
CanvasMaterialData * material_data = nullptr ;
if ( material . is_valid ( ) ) {
material_data = static_cast < CanvasMaterialData * > ( material_storage - > material_get_data ( material , RendererRD : : MaterialStorage : : SHADER_TYPE_2D ) ) ;
}
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
current_batch - > material = material ;
current_batch - > material_data = material_data ;
}
2020-11-26 12:50:21 +00:00
2024-09-13 20:05:06 +00:00
if ( ci - > repeat_source_item = = nullptr | | ci - > repeat_size = = Vector2 ( ) ) {
Transform2D base_transform = p_canvas_transform_inverse * ci - > final_transform ;
_record_item_commands ( ci , p_to_render_target , base_transform , current_clip , p_lights , instance_index , batch_broken , r_sdf_used , current_batch ) ;
2024-07-29 21:23:03 +00:00
} else {
Point2 start_pos = ci - > repeat_size * - ( ci - > repeat_times / 2 ) ;
2024-09-13 20:05:06 +00:00
Point2 offset ;
int repeat_times_x = ci - > repeat_size . x ? ci - > repeat_times : 0 ;
int repeat_times_y = ci - > repeat_size . y ? ci - > repeat_times : 0 ;
for ( int ry = 0 ; ry < = repeat_times_y ; ry + + ) {
offset . y = start_pos . y + ry * ci - > repeat_size . y ;
for ( int rx = 0 ; rx < = repeat_times_x ; rx + + ) {
offset . x = start_pos . x + rx * ci - > repeat_size . x ;
Transform2D base_transform = ci - > final_transform ;
base_transform . columns [ 2 ] + = ci - > repeat_source_item - > final_transform . basis_xform ( offset ) ;
base_transform = p_canvas_transform_inverse * base_transform ;
_record_item_commands ( ci , p_to_render_target , base_transform , current_clip , p_lights , instance_index , batch_broken , r_sdf_used , current_batch ) ;
}
}
2024-07-29 21:23:03 +00:00
}
}
// Copy over remaining data needed for rendering.
if ( instance_index > 0 ) {
RD : : get_singleton ( ) - > buffer_update (
state . canvas_instance_data_buffers [ state . current_data_buffer_index ] . instance_buffers [ state . current_instance_buffer_index ] ,
state . last_instance_index * sizeof ( InstanceData ) ,
instance_index * sizeof ( InstanceData ) ,
state . instance_data_array ) ;
2020-11-26 12:50:21 +00:00
}
2024-07-29 21:23:03 +00:00
}
if ( state . canvas_instance_batches . is_empty ( ) ) {
// Nothing to render, just return.
return ;
}
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
// Render batches
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
RendererRD : : TextureStorage * texture_storage = RendererRD : : TextureStorage : : get_singleton ( ) ;
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
RID framebuffer ;
RID fb_uniform_set ;
bool clear = false ;
Vector < Color > clear_colors ;
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
if ( p_to_backbuffer ) {
framebuffer = texture_storage - > render_target_get_rd_backbuffer_framebuffer ( p_to_render_target . render_target ) ;
fb_uniform_set = texture_storage - > render_target_get_backbuffer_uniform_set ( p_to_render_target . render_target ) ;
} else {
framebuffer = texture_storage - > render_target_get_rd_framebuffer ( p_to_render_target . render_target ) ;
texture_storage - > render_target_set_msaa_needs_resolve ( p_to_render_target . render_target , false ) ; // If MSAA is enabled, our framebuffer will be resolved!
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
if ( texture_storage - > render_target_is_clear_requested ( p_to_render_target . render_target ) ) {
clear = true ;
clear_colors . push_back ( texture_storage - > render_target_get_clear_request_color ( p_to_render_target . render_target ) ) ;
texture_storage - > render_target_disable_clear_request ( p_to_render_target . render_target ) ;
}
// TODO: Obtain from framebuffer format eventually when this is implemented.
fb_uniform_set = texture_storage - > render_target_get_framebuffer_uniform_set ( p_to_render_target . render_target ) ;
}
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
if ( fb_uniform_set . is_null ( ) | | ! RD : : get_singleton ( ) - > uniform_set_is_valid ( fb_uniform_set ) ) {
fb_uniform_set = _create_base_uniform_set ( p_to_render_target . render_target , p_to_backbuffer ) ;
}
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
RD : : FramebufferFormatID fb_format = RD : : get_singleton ( ) - > framebuffer_get_format ( framebuffer ) ;
2019-07-05 01:54:32 +00:00
2024-10-29 21:27:16 +00:00
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( framebuffer , clear ? RD : : INITIAL_ACTION_CLEAR : RD : : INITIAL_ACTION_LOAD , RD : : FINAL_ACTION_STORE , RD : : INITIAL_ACTION_LOAD , RD : : FINAL_ACTION_DISCARD , clear_colors , 1 , 0 , Rect2 ( ) , RDD : : BreadcrumbMarker : : UI_PASS ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , fb_uniform_set , BASE_UNIFORM_SET ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , state . default_transforms_uniform_set , TRANSFORMS_UNIFORM_SET ) ;
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
Item * current_clip = nullptr ;
2024-09-27 18:05:46 +00:00
state . current_batch_uniform_set = RID ( ) ;
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
for ( uint32_t i = 0 ; i < = state . current_batch_index ; i + + ) {
Batch * current_batch = & state . canvas_instance_batches [ i ] ;
// Skipping when there is no instances.
if ( current_batch - > instance_count = = 0 ) {
continue ;
}
2020-12-02 01:40:47 +00:00
2024-07-29 21:23:03 +00:00
//setup clip
if ( current_clip ! = current_batch - > clip ) {
current_clip = current_batch - > clip ;
if ( current_clip ) {
RD : : get_singleton ( ) - > draw_list_enable_scissor ( draw_list , current_clip - > final_clip_rect ) ;
} else {
RD : : get_singleton ( ) - > draw_list_disable_scissor ( draw_list ) ;
2020-12-02 01:40:47 +00:00
}
2024-07-29 21:23:03 +00:00
}
2024-03-15 17:13:31 +00:00
CanvasShaderData * shader_data = shader . default_version_data ;
2024-07-29 21:23:03 +00:00
CanvasMaterialData * material_data = current_batch - > material_data ;
if ( material_data ) {
2024-03-15 17:13:31 +00:00
if ( material_data - > shader_data - > version . is_valid ( ) & & material_data - > shader_data - > is_valid ( ) ) {
shader_data = material_data - > shader_data ;
2024-07-29 21:23:03 +00:00
// Update uniform set.
RID uniform_set = texture_storage - > render_target_is_using_hdr ( p_to_render_target . render_target ) ? material_data - > uniform_set : material_data - > uniform_set_srgb ;
if ( uniform_set . is_valid ( ) & & RD : : get_singleton ( ) - > uniform_set_is_valid ( uniform_set ) ) { // Material may not have a uniform set.
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , uniform_set , MATERIAL_UNIFORM_SET ) ;
material_data - > set_as_used ( ) ;
}
2020-12-02 01:40:47 +00:00
}
2020-11-26 12:50:21 +00:00
}
2024-07-29 21:23:03 +00:00
2024-03-15 17:13:31 +00:00
_render_batch ( draw_list , shader_data , fb_format , p_lights , current_batch , r_render_info ) ;
2020-11-26 12:50:21 +00:00
}
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_end ( ) ;
2019-07-05 01:54:32 +00:00
2024-10-29 21:27:16 +00:00
texture_info_map . clear ( ) ;
2024-07-29 21:23:03 +00:00
state . current_batch_index = 0 ;
state . canvas_instance_batches . clear ( ) ;
state . last_instance_index + = instance_index ;
}
2020-11-26 12:50:21 +00:00
2024-10-29 21:27:16 +00:00
RendererCanvasRenderRD : : InstanceData * RendererCanvasRenderRD : : new_instance_data ( float * p_world , uint32_t * p_lights , uint32_t p_base_flags , uint32_t p_index , TextureInfo * p_info ) {
InstanceData * instance_data = & state . instance_data_array [ p_index ] ;
// Zero out most fields.
for ( int i = 0 ; i < 4 ; i + + ) {
instance_data - > modulation [ i ] = 0.0 ;
instance_data - > ninepatch_margins [ i ] = 0.0 ;
instance_data - > src_rect [ i ] = 0.0 ;
instance_data - > dst_rect [ i ] = 0.0 ;
}
instance_data - > pad [ 0 ] = 0.0 ;
instance_data - > pad [ 1 ] = 0.0 ;
instance_data - > lights [ 0 ] = p_lights [ 0 ] ;
instance_data - > lights [ 1 ] = p_lights [ 1 ] ;
instance_data - > lights [ 2 ] = p_lights [ 2 ] ;
instance_data - > lights [ 3 ] = p_lights [ 3 ] ;
for ( int i = 0 ; i < 6 ; i + + ) {
instance_data - > world [ i ] = p_world [ i ] ;
}
instance_data - > flags = p_base_flags | p_info - > flags ; // Reset on each command for safety, keep canvas texture binding config.
instance_data - > color_texture_pixel_size [ 0 ] = p_info - > texpixel_size . width ;
instance_data - > color_texture_pixel_size [ 1 ] = p_info - > texpixel_size . height ;
instance_data - > pad1 = 0 ;
return instance_data ;
}
2024-09-13 20:05:06 +00:00
void RendererCanvasRenderRD : : _record_item_commands ( const Item * p_item , RenderTarget p_render_target , const Transform2D & p_base_transform , Item * & r_current_clip , Light * p_lights , uint32_t & r_index , bool & r_batch_broken , bool & r_sdf_used , Batch * & r_current_batch ) {
2024-10-29 21:27:16 +00:00
const RenderingServer : : CanvasItemTextureFilter texture_filter = p_item - > texture_filter = = RS : : CANVAS_ITEM_TEXTURE_FILTER_DEFAULT ? default_filter : p_item - > texture_filter ;
const RenderingServer : : CanvasItemTextureRepeat texture_repeat = p_item - > texture_repeat = = RS : : CANVAS_ITEM_TEXTURE_REPEAT_DEFAULT ? default_repeat : p_item - > texture_repeat ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
Transform2D base_transform = p_base_transform ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
float world [ 6 ] ;
Transform2D draw_transform ; // Used by transform command
_update_transform_2d_to_mat2x3 ( base_transform , world ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
Color base_color = p_item - > final_modulate ;
bool use_linear_colors = bool ( p_render_target . base_flags & FLAGS_CONVERT_ATTRIBUTES_TO_LINEAR ) ;
uint32_t base_flags = p_render_target . base_flags ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
bool reclip = false ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
bool skipping = false ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
// TODO: consider making lights a per-batch property and then baking light operations in the shader for better performance.
uint32_t lights [ 4 ] = { 0 , 0 , 0 , 0 } ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
uint16_t light_count = 0 ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
{
Light * light = p_lights ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
while ( light ) {
if ( light - > render_index_cache > = 0 & & p_item - > light_mask & light - > item_mask & & p_item - > z_final > = light - > z_min & & p_item - > z_final < = light - > z_max & & p_item - > global_rect_cache . intersects_transformed ( light - > xform_cache , light - > rect_cache ) ) {
uint32_t light_index = light - > render_index_cache ;
lights [ light_count > > 2 ] | = light_index < < ( ( light_count & 3 ) * 8 ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
light_count + + ;
2024-10-29 21:27:16 +00:00
if ( light_count = = MAX_LIGHTS_PER_ITEM - 1 ) {
2024-07-29 21:23:03 +00:00
break ;
}
2019-07-05 01:54:32 +00:00
}
2024-07-29 21:23:03 +00:00
light = light - > next_ptr ;
2019-07-05 01:54:32 +00:00
}
2024-07-29 21:23:03 +00:00
base_flags | = light_count < < FLAGS_LIGHT_COUNT_SHIFT ;
}
2019-07-05 01:54:32 +00:00
2024-03-15 17:13:31 +00:00
bool use_lighting = ( light_count > 0 | | using_directional_lights ) ;
2019-07-05 01:54:32 +00:00
2024-03-15 17:13:31 +00:00
if ( use_lighting ! = r_current_batch - > use_lighting ) {
2024-09-13 20:05:06 +00:00
r_current_batch = _new_batch ( r_batch_broken ) ;
2024-03-15 17:13:31 +00:00
r_current_batch - > use_lighting = use_lighting ;
2019-07-05 01:54:32 +00:00
}
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
const Item : : Command * c = p_item - > commands ;
while ( c ) {
if ( skipping & & c - > type ! = Item : : Command : : TYPE_ANIMATION_SLICE ) {
c = c - > next ;
continue ;
}
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
switch ( c - > type ) {
case Item : : Command : : TYPE_RECT : {
const Item : : CommandRect * rect = static_cast < const Item : : CommandRect * > ( c ) ;
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
// 1: If commands are different, start a new batch.
2024-09-13 20:05:06 +00:00
if ( r_current_batch - > command_type ! = Item : : Command : : TYPE_RECT ) {
r_current_batch = _new_batch ( r_batch_broken ) ;
r_current_batch - > command_type = Item : : Command : : TYPE_RECT ;
r_current_batch - > command = c ;
2024-07-29 21:23:03 +00:00
// default variant
2024-03-15 17:13:31 +00:00
r_current_batch - > shader_variant = SHADER_VARIANT_QUAD ;
r_current_batch - > render_primitive = RD : : RENDER_PRIMITIVE_TRIANGLES ;
2024-07-29 21:23:03 +00:00
}
2020-11-26 12:50:21 +00:00
2024-10-29 21:27:16 +00:00
RenderingServer : : CanvasItemTextureRepeat rect_repeat = texture_repeat ;
2024-07-29 21:23:03 +00:00
if ( bool ( rect - > flags & CANVAS_RECT_TILE ) ) {
2024-10-29 21:27:16 +00:00
rect_repeat = RenderingServer : : CanvasItemTextureRepeat : : CANVAS_ITEM_TEXTURE_REPEAT_ENABLED ;
2024-07-29 21:23:03 +00:00
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
Color modulated = rect - > modulate * base_color ;
if ( use_linear_colors ) {
modulated = modulated . srgb_to_linear ( ) ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
bool has_blend = bool ( rect - > flags & CANVAS_RECT_LCD ) ;
// Start a new batch if the blend mode has changed,
// or blend mode is enabled and the modulation has changed.
2024-09-13 20:05:06 +00:00
if ( has_blend ! = r_current_batch - > has_blend | | ( has_blend & & modulated ! = r_current_batch - > modulate ) ) {
r_current_batch = _new_batch ( r_batch_broken ) ;
r_current_batch - > has_blend = has_blend ;
r_current_batch - > modulate = modulated ;
2024-03-15 17:13:31 +00:00
r_current_batch - > shader_variant = SHADER_VARIANT_QUAD ;
r_current_batch - > render_primitive = RD : : RENDER_PRIMITIVE_TRIANGLES ;
2024-07-29 21:23:03 +00:00
}
2019-06-16 02:45:24 +00:00
2024-10-29 21:27:16 +00:00
bool has_msdf = bool ( rect - > flags & CANVAS_RECT_MSDF ) ;
TextureState tex_state ( rect - > texture , texture_filter , rect_repeat , has_msdf , use_linear_colors ) ;
TextureInfo * tex_info = texture_info_map . getptr ( tex_state ) ;
if ( ! tex_info ) {
tex_info = & texture_info_map . insert ( tex_state , TextureInfo ( ) ) - > value ;
_prepare_batch_texture_info ( rect - > texture , tex_state , tex_info ) ;
}
if ( r_current_batch - > tex_info ! = tex_info ) {
r_current_batch = _new_batch ( r_batch_broken ) ;
r_current_batch - > tex_info = tex_info ;
}
InstanceData * instance_data = new_instance_data ( world , lights , base_flags , r_index , tex_info ) ;
2024-07-29 21:23:03 +00:00
Rect2 src_rect ;
Rect2 dst_rect ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
if ( rect - > texture . is_valid ( ) ) {
2024-10-29 21:27:16 +00:00
src_rect = ( rect - > flags & CANVAS_RECT_REGION ) ? Rect2 ( rect - > source . position * tex_info - > texpixel_size , rect - > source . size * tex_info - > texpixel_size ) : Rect2 ( 0 , 0 , 1 , 1 ) ;
2024-07-29 21:23:03 +00:00
dst_rect = Rect2 ( rect - > rect . position , rect - > rect . size ) ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
if ( dst_rect . size . width < 0 ) {
dst_rect . position . x + = dst_rect . size . width ;
dst_rect . size . width * = - 1 ;
}
if ( dst_rect . size . height < 0 ) {
dst_rect . position . y + = dst_rect . size . height ;
dst_rect . size . height * = - 1 ;
}
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
if ( rect - > flags & CANVAS_RECT_FLIP_H ) {
src_rect . size . x * = - 1 ;
instance_data - > flags | = FLAGS_FLIP_H ;
}
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
if ( rect - > flags & CANVAS_RECT_FLIP_V ) {
src_rect . size . y * = - 1 ;
instance_data - > flags | = FLAGS_FLIP_V ;
}
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
if ( rect - > flags & CANVAS_RECT_TRANSPOSE ) {
instance_data - > flags | = FLAGS_TRANSPOSE_RECT ;
}
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
if ( rect - > flags & CANVAS_RECT_CLIP_UV ) {
instance_data - > flags | = FLAGS_CLIP_RECT_UV ;
}
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
} else {
dst_rect = Rect2 ( rect - > rect . position , rect - > rect . size ) ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
if ( dst_rect . size . width < 0 ) {
dst_rect . position . x + = dst_rect . size . width ;
dst_rect . size . width * = - 1 ;
}
if ( dst_rect . size . height < 0 ) {
dst_rect . position . y + = dst_rect . size . height ;
dst_rect . size . height * = - 1 ;
}
2022-08-09 16:29:49 +00:00
2024-07-29 21:23:03 +00:00
src_rect = Rect2 ( 0 , 0 , 1 , 1 ) ;
}
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
if ( has_msdf ) {
instance_data - > flags | = FLAGS_USE_MSDF ;
instance_data - > msdf [ 0 ] = rect - > px_range ; // Pixel range.
instance_data - > msdf [ 1 ] = rect - > outline ; // Outline size.
instance_data - > msdf [ 2 ] = 0.f ; // Reserved.
instance_data - > msdf [ 3 ] = 0.f ; // Reserved.
} else if ( rect - > flags & CANVAS_RECT_LCD ) {
instance_data - > flags | = FLAGS_USE_LCD ;
}
2022-08-09 16:29:49 +00:00
2024-07-29 21:23:03 +00:00
instance_data - > modulation [ 0 ] = modulated . r ;
instance_data - > modulation [ 1 ] = modulated . g ;
instance_data - > modulation [ 2 ] = modulated . b ;
instance_data - > modulation [ 3 ] = modulated . a ;
2022-08-09 16:29:49 +00:00
2024-07-29 21:23:03 +00:00
instance_data - > src_rect [ 0 ] = src_rect . position . x ;
instance_data - > src_rect [ 1 ] = src_rect . position . y ;
instance_data - > src_rect [ 2 ] = src_rect . size . width ;
instance_data - > src_rect [ 3 ] = src_rect . size . height ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
instance_data - > dst_rect [ 0 ] = dst_rect . position . x ;
instance_data - > dst_rect [ 1 ] = dst_rect . position . y ;
instance_data - > dst_rect [ 2 ] = dst_rect . size . width ;
instance_data - > dst_rect [ 3 ] = dst_rect . size . height ;
2019-07-21 14:31:30 +00:00
2024-09-13 20:05:06 +00:00
_add_to_batch ( r_index , r_batch_broken , r_current_batch ) ;
2024-07-29 21:23:03 +00:00
} break ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
case Item : : Command : : TYPE_NINEPATCH : {
const Item : : CommandNinePatch * np = static_cast < const Item : : CommandNinePatch * > ( c ) ;
2019-07-21 14:31:30 +00:00
2024-09-13 20:05:06 +00:00
if ( r_current_batch - > command_type ! = Item : : Command : : TYPE_NINEPATCH ) {
r_current_batch = _new_batch ( r_batch_broken ) ;
r_current_batch - > command_type = Item : : Command : : TYPE_NINEPATCH ;
r_current_batch - > command = c ;
2024-09-20 05:11:08 +00:00
r_current_batch - > has_blend = false ;
2024-03-15 17:13:31 +00:00
r_current_batch - > shader_variant = SHADER_VARIANT_NINEPATCH ;
r_current_batch - > render_primitive = RD : : RENDER_PRIMITIVE_TRIANGLES ;
2024-07-29 21:23:03 +00:00
}
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
TextureState tex_state ( np - > texture , texture_filter , texture_repeat , false , use_linear_colors ) ;
2024-10-29 21:27:16 +00:00
TextureInfo * tex_info = texture_info_map . getptr ( tex_state ) ;
if ( ! tex_info ) {
tex_info = & texture_info_map . insert ( tex_state , TextureInfo ( ) ) - > value ;
_prepare_batch_texture_info ( np - > texture , tex_state , tex_info ) ;
}
if ( r_current_batch - > tex_info ! = tex_info ) {
2024-09-13 20:05:06 +00:00
r_current_batch = _new_batch ( r_batch_broken ) ;
2024-10-29 21:27:16 +00:00
r_current_batch - > tex_info = tex_info ;
2024-07-29 21:23:03 +00:00
}
2020-10-28 18:34:27 +00:00
2024-10-29 21:27:16 +00:00
InstanceData * instance_data = new_instance_data ( world , lights , base_flags , r_index , tex_info ) ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
Rect2 src_rect ;
Rect2 dst_rect ( np - > rect . position . x , np - > rect . position . y , np - > rect . size . x , np - > rect . size . y ) ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
if ( np - > texture . is_null ( ) ) {
src_rect = Rect2 ( 0 , 0 , 1 , 1 ) ;
} else {
if ( np - > source ! = Rect2 ( ) ) {
2024-10-29 21:27:16 +00:00
src_rect = Rect2 ( np - > source . position . x * tex_info - > texpixel_size . width , np - > source . position . y * tex_info - > texpixel_size . height , np - > source . size . x * tex_info - > texpixel_size . width , np - > source . size . y * tex_info - > texpixel_size . height ) ;
2024-07-29 21:23:03 +00:00
instance_data - > color_texture_pixel_size [ 0 ] = 1.0 / np - > source . size . width ;
instance_data - > color_texture_pixel_size [ 1 ] = 1.0 / np - > source . size . height ;
} else {
src_rect = Rect2 ( 0 , 0 , 1 , 1 ) ;
}
}
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
Color modulated = np - > color * base_color ;
if ( use_linear_colors ) {
modulated = modulated . srgb_to_linear ( ) ;
}
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
instance_data - > modulation [ 0 ] = modulated . r ;
instance_data - > modulation [ 1 ] = modulated . g ;
instance_data - > modulation [ 2 ] = modulated . b ;
instance_data - > modulation [ 3 ] = modulated . a ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
instance_data - > src_rect [ 0 ] = src_rect . position . x ;
instance_data - > src_rect [ 1 ] = src_rect . position . y ;
instance_data - > src_rect [ 2 ] = src_rect . size . width ;
instance_data - > src_rect [ 3 ] = src_rect . size . height ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
instance_data - > dst_rect [ 0 ] = dst_rect . position . x ;
instance_data - > dst_rect [ 1 ] = dst_rect . position . y ;
instance_data - > dst_rect [ 2 ] = dst_rect . size . width ;
instance_data - > dst_rect [ 3 ] = dst_rect . size . height ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
instance_data - > flags | = int ( np - > axis_x ) < < FLAGS_NINEPATCH_H_MODE_SHIFT ;
instance_data - > flags | = int ( np - > axis_y ) < < FLAGS_NINEPATCH_V_MODE_SHIFT ;
2022-08-12 11:03:28 +00:00
2024-07-29 21:23:03 +00:00
if ( np - > draw_center ) {
instance_data - > flags | = FLAGS_NINEPACH_DRAW_CENTER ;
}
2022-08-12 11:03:28 +00:00
2024-07-29 21:23:03 +00:00
instance_data - > ninepatch_margins [ 0 ] = np - > margin [ SIDE_LEFT ] ;
instance_data - > ninepatch_margins [ 1 ] = np - > margin [ SIDE_TOP ] ;
instance_data - > ninepatch_margins [ 2 ] = np - > margin [ SIDE_RIGHT ] ;
instance_data - > ninepatch_margins [ 3 ] = np - > margin [ SIDE_BOTTOM ] ;
2019-07-21 14:31:30 +00:00
2024-09-13 20:05:06 +00:00
_add_to_batch ( r_index , r_batch_broken , r_current_batch ) ;
2024-07-29 21:23:03 +00:00
} break ;
2019-08-26 20:43:58 +00:00
2024-07-29 21:23:03 +00:00
case Item : : Command : : TYPE_POLYGON : {
const Item : : CommandPolygon * polygon = static_cast < const Item : : CommandPolygon * > ( c ) ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
// Polygon's can't be batched, so always create a new batch
2024-09-13 20:05:06 +00:00
r_current_batch = _new_batch ( r_batch_broken ) ;
2019-06-16 02:45:24 +00:00
2024-09-13 20:05:06 +00:00
r_current_batch - > command_type = Item : : Command : : TYPE_POLYGON ;
2024-09-20 05:11:08 +00:00
r_current_batch - > has_blend = false ;
2024-09-13 20:05:06 +00:00
r_current_batch - > command = c ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
TextureState tex_state ( polygon - > texture , texture_filter , texture_repeat , false , use_linear_colors ) ;
2024-10-29 21:27:16 +00:00
TextureInfo * tex_info = texture_info_map . getptr ( tex_state ) ;
if ( ! tex_info ) {
tex_info = & texture_info_map . insert ( tex_state , TextureInfo ( ) ) - > value ;
_prepare_batch_texture_info ( polygon - > texture , tex_state , tex_info ) ;
}
if ( r_current_batch - > tex_info ! = tex_info ) {
2024-09-13 20:05:06 +00:00
r_current_batch = _new_batch ( r_batch_broken ) ;
2024-10-29 21:27:16 +00:00
r_current_batch - > tex_info = tex_info ;
2024-07-29 21:23:03 +00:00
}
2020-05-14 12:29:06 +00:00
2024-07-29 21:23:03 +00:00
// pipeline variant
{
ERR_CONTINUE ( polygon - > primitive < 0 | | polygon - > primitive > = RS : : PRIMITIVE_MAX ) ;
2024-03-15 17:13:31 +00:00
r_current_batch - > shader_variant = polygon - > primitive = = RS : : PRIMITIVE_POINTS ? SHADER_VARIANT_ATTRIBUTES_POINTS : SHADER_VARIANT_ATTRIBUTES ;
r_current_batch - > render_primitive = _primitive_type_to_render_primitive ( polygon - > primitive ) ;
2024-07-29 21:23:03 +00:00
}
2020-05-14 12:29:06 +00:00
2024-10-29 21:27:16 +00:00
InstanceData * instance_data = new_instance_data ( world , lights , base_flags , r_index , tex_info ) ;
2021-01-05 23:01:50 +00:00
2024-07-29 21:23:03 +00:00
Color color = base_color ;
if ( use_linear_colors ) {
color = color . srgb_to_linear ( ) ;
}
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
instance_data - > modulation [ 0 ] = color . r ;
instance_data - > modulation [ 1 ] = color . g ;
instance_data - > modulation [ 2 ] = color . b ;
instance_data - > modulation [ 3 ] = color . a ;
2020-05-14 12:29:06 +00:00
2024-09-13 20:05:06 +00:00
_add_to_batch ( r_index , r_batch_broken , r_current_batch ) ;
2024-07-29 21:23:03 +00:00
} break ;
2020-05-14 12:29:06 +00:00
2024-07-29 21:23:03 +00:00
case Item : : Command : : TYPE_PRIMITIVE : {
const Item : : CommandPrimitive * primitive = static_cast < const Item : : CommandPrimitive * > ( c ) ;
2019-06-16 02:45:24 +00:00
2024-09-13 20:05:06 +00:00
if ( primitive - > point_count ! = r_current_batch - > primitive_points | | r_current_batch - > command_type ! = Item : : Command : : TYPE_PRIMITIVE ) {
r_current_batch = _new_batch ( r_batch_broken ) ;
r_current_batch - > command_type = Item : : Command : : TYPE_PRIMITIVE ;
2024-09-20 05:11:08 +00:00
r_current_batch - > has_blend = false ;
2024-09-13 20:05:06 +00:00
r_current_batch - > command = c ;
r_current_batch - > primitive_points = primitive - > point_count ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
ERR_CONTINUE ( primitive - > point_count = = 0 | | primitive - > point_count > 4 ) ;
2024-03-15 17:13:31 +00:00
switch ( primitive - > point_count ) {
case 1 :
r_current_batch - > shader_variant = SHADER_VARIANT_PRIMITIVE_POINTS ;
r_current_batch - > render_primitive = RD : : RENDER_PRIMITIVE_POINTS ;
break ;
case 2 :
r_current_batch - > shader_variant = SHADER_VARIANT_PRIMITIVE ;
r_current_batch - > render_primitive = RD : : RENDER_PRIMITIVE_LINES ;
break ;
case 3 :
case 4 :
r_current_batch - > shader_variant = SHADER_VARIANT_PRIMITIVE ;
r_current_batch - > render_primitive = RD : : RENDER_PRIMITIVE_TRIANGLES ;
break ;
default :
// Unknown point count.
break ;
2024-07-29 21:23:03 +00:00
}
}
2019-07-21 14:31:30 +00:00
2024-10-29 21:27:16 +00:00
TextureState tex_state ( primitive - > texture , texture_filter , texture_repeat , false , use_linear_colors ) ;
TextureInfo * tex_info = texture_info_map . getptr ( tex_state ) ;
if ( ! tex_info ) {
tex_info = & texture_info_map . insert ( tex_state , TextureInfo ( ) ) - > value ;
_prepare_batch_texture_info ( primitive - > texture , tex_state , tex_info ) ;
}
if ( r_current_batch - > tex_info ! = tex_info ) {
r_current_batch = _new_batch ( r_batch_broken ) ;
r_current_batch - > tex_info = tex_info ;
}
InstanceData * instance_data = new_instance_data ( world , lights , base_flags , r_index , tex_info ) ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
for ( uint32_t j = 0 ; j < MIN ( 3u , primitive - > point_count ) ; j + + ) {
instance_data - > points [ j * 2 + 0 ] = primitive - > points [ j ] . x ;
instance_data - > points [ j * 2 + 1 ] = primitive - > points [ j ] . y ;
instance_data - > uvs [ j * 2 + 0 ] = primitive - > uvs [ j ] . x ;
instance_data - > uvs [ j * 2 + 1 ] = primitive - > uvs [ j ] . y ;
Color col = primitive - > colors [ j ] * base_color ;
if ( use_linear_colors ) {
col = col . srgb_to_linear ( ) ;
}
instance_data - > colors [ j * 2 + 0 ] = ( uint32_t ( Math : : make_half_float ( col . g ) ) < < 16 ) | Math : : make_half_float ( col . r ) ;
instance_data - > colors [ j * 2 + 1 ] = ( uint32_t ( Math : : make_half_float ( col . a ) ) < < 16 ) | Math : : make_half_float ( col . b ) ;
}
2019-06-16 02:45:24 +00:00
2024-09-13 20:05:06 +00:00
_add_to_batch ( r_index , r_batch_broken , r_current_batch ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
if ( primitive - > point_count = = 4 ) {
2024-10-29 21:27:16 +00:00
instance_data = new_instance_data ( world , lights , base_flags , r_index , tex_info ) ;
2024-07-29 21:23:03 +00:00
for ( uint32_t j = 0 ; j < 3 ; j + + ) {
int offset = j = = 0 ? 0 : 1 ;
// Second triangle in the quad. Uses vertices 0, 2, 3.
instance_data - > points [ j * 2 + 0 ] = primitive - > points [ j + offset ] . x ;
instance_data - > points [ j * 2 + 1 ] = primitive - > points [ j + offset ] . y ;
instance_data - > uvs [ j * 2 + 0 ] = primitive - > uvs [ j + offset ] . x ;
instance_data - > uvs [ j * 2 + 1 ] = primitive - > uvs [ j + offset ] . y ;
2024-10-29 21:27:16 +00:00
Color col = primitive - > colors [ j + offset ] * base_color ;
2024-07-29 21:23:03 +00:00
if ( use_linear_colors ) {
col = col . srgb_to_linear ( ) ;
}
instance_data - > colors [ j * 2 + 0 ] = ( uint32_t ( Math : : make_half_float ( col . g ) ) < < 16 ) | Math : : make_half_float ( col . r ) ;
instance_data - > colors [ j * 2 + 1 ] = ( uint32_t ( Math : : make_half_float ( col . a ) ) < < 16 ) | Math : : make_half_float ( col . b ) ;
}
2019-07-10 20:44:55 +00:00
2024-09-13 20:05:06 +00:00
_add_to_batch ( r_index , r_batch_broken , r_current_batch ) ;
2024-07-29 21:23:03 +00:00
}
} break ;
2019-07-10 20:44:55 +00:00
2024-07-29 21:23:03 +00:00
case Item : : Command : : TYPE_MESH :
case Item : : Command : : TYPE_MULTIMESH :
case Item : : Command : : TYPE_PARTICLES : {
// Mesh's can't be batched, so always create a new batch
2024-09-13 20:05:06 +00:00
r_current_batch = _new_batch ( r_batch_broken ) ;
r_current_batch - > command = c ;
r_current_batch - > command_type = c - > type ;
2024-09-20 05:11:08 +00:00
r_current_batch - > has_blend = false ;
2019-07-10 20:44:55 +00:00
2024-07-29 21:23:03 +00:00
InstanceData * instance_data = nullptr ;
2023-05-26 21:35:16 +00:00
2024-07-29 21:23:03 +00:00
Color modulate ( 1 , 1 , 1 , 1 ) ;
if ( c - > type = = Item : : Command : : TYPE_MESH ) {
const Item : : CommandMesh * m = static_cast < const Item : : CommandMesh * > ( c ) ;
TextureState tex_state ( m - > texture , texture_filter , texture_repeat , false , use_linear_colors ) ;
2024-10-29 21:27:16 +00:00
TextureInfo * tex_info = texture_info_map . getptr ( tex_state ) ;
if ( ! tex_info ) {
tex_info = & texture_info_map . insert ( tex_state , TextureInfo ( ) ) - > value ;
_prepare_batch_texture_info ( m - > texture , tex_state , tex_info ) ;
}
r_current_batch - > tex_info = tex_info ;
instance_data = new_instance_data ( world , lights , base_flags , r_index , tex_info ) ;
2019-06-16 02:45:24 +00:00
2024-09-13 20:05:06 +00:00
r_current_batch - > mesh_instance_count = 1 ;
2024-07-29 21:23:03 +00:00
_update_transform_2d_to_mat2x3 ( base_transform * draw_transform * m - > transform , instance_data - > world ) ;
modulate = m - > modulate ;
} else if ( c - > type = = Item : : Command : : TYPE_MULTIMESH ) {
RendererRD : : MeshStorage * mesh_storage = RendererRD : : MeshStorage : : get_singleton ( ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
const Item : : CommandMultiMesh * mm = static_cast < const Item : : CommandMultiMesh * > ( c ) ;
RID multimesh = mm - > multimesh ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
if ( mesh_storage - > multimesh_get_transform_format ( multimesh ) ! = RS : : MULTIMESH_TRANSFORM_2D ) {
break ;
}
2020-10-28 18:34:27 +00:00
2024-09-13 20:05:06 +00:00
r_current_batch - > mesh_instance_count = mesh_storage - > multimesh_get_instances_to_draw ( multimesh ) ;
if ( r_current_batch - > mesh_instance_count = = 0 ) {
2024-07-29 21:23:03 +00:00
break ;
}
2020-10-28 18:34:27 +00:00
2024-07-29 21:23:03 +00:00
TextureState tex_state ( mm - > texture , texture_filter , texture_repeat , false , use_linear_colors ) ;
2024-10-29 21:27:16 +00:00
TextureInfo * tex_info = texture_info_map . getptr ( tex_state ) ;
if ( ! tex_info ) {
tex_info = & texture_info_map . insert ( tex_state , TextureInfo ( ) ) - > value ;
_prepare_batch_texture_info ( mm - > texture , tex_state , tex_info ) ;
}
r_current_batch - > tex_info = tex_info ;
instance_data = new_instance_data ( world , lights , base_flags , r_index , tex_info ) ;
2020-10-28 18:34:27 +00:00
2024-07-29 21:23:03 +00:00
instance_data - > flags | = 1 ; // multimesh, trails disabled
2020-10-28 18:34:27 +00:00
2024-07-29 21:23:03 +00:00
if ( mesh_storage - > multimesh_uses_colors ( mm - > multimesh ) ) {
instance_data - > flags | = FLAGS_INSTANCING_HAS_COLORS ;
}
if ( mesh_storage - > multimesh_uses_custom_data ( mm - > multimesh ) ) {
instance_data - > flags | = FLAGS_INSTANCING_HAS_CUSTOM_DATA ;
}
} else if ( c - > type = = Item : : Command : : TYPE_PARTICLES ) {
RendererRD : : TextureStorage * texture_storage = RendererRD : : TextureStorage : : get_singleton ( ) ;
RendererRD : : ParticlesStorage * particles_storage = RendererRD : : ParticlesStorage : : get_singleton ( ) ;
2022-08-12 11:03:28 +00:00
2024-07-29 21:23:03 +00:00
const Item : : CommandParticles * pt = static_cast < const Item : : CommandParticles * > ( c ) ;
TextureState tex_state ( pt - > texture , texture_filter , texture_repeat , false , use_linear_colors ) ;
2024-10-29 21:27:16 +00:00
TextureInfo * tex_info = texture_info_map . getptr ( tex_state ) ;
if ( ! tex_info ) {
tex_info = & texture_info_map . insert ( tex_state , TextureInfo ( ) ) - > value ;
_prepare_batch_texture_info ( pt - > texture , tex_state , tex_info ) ;
}
r_current_batch - > tex_info = tex_info ;
instance_data = new_instance_data ( world , lights , base_flags , r_index , tex_info ) ;
2019-08-26 20:43:58 +00:00
2024-07-29 21:23:03 +00:00
uint32_t divisor = 1 ;
2024-09-13 20:05:06 +00:00
r_current_batch - > mesh_instance_count = particles_storage - > particles_get_amount ( pt - > particles , divisor ) ;
2024-07-29 21:23:03 +00:00
instance_data - > flags | = ( divisor & FLAGS_INSTANCING_MASK ) ;
2024-09-13 20:05:06 +00:00
r_current_batch - > mesh_instance_count / = divisor ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
RID particles = pt - > particles ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
instance_data - > flags | = FLAGS_INSTANCING_HAS_COLORS ;
instance_data - > flags | = FLAGS_INSTANCING_HAS_CUSTOM_DATA ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
if ( particles_storage - > particles_has_collision ( particles ) & & texture_storage - > render_target_is_sdf_enabled ( p_render_target . render_target ) ) {
// Pass collision information.
Transform2D xform = p_item - > final_transform ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
RID sdf_texture = texture_storage - > render_target_get_sdf_texture ( p_render_target . render_target ) ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
Rect2 to_screen ;
{
Rect2 sdf_rect = texture_storage - > render_target_get_sdf_rect ( p_render_target . render_target ) ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
to_screen . size = Vector2 ( 1.0 / sdf_rect . size . width , 1.0 / sdf_rect . size . height ) ;
to_screen . position = - sdf_rect . position * to_screen . size ;
}
2023-12-27 20:58:50 +00:00
2024-07-29 21:23:03 +00:00
particles_storage - > particles_set_canvas_sdf_collision ( pt - > particles , true , xform , to_screen , sdf_texture ) ;
} else {
particles_storage - > particles_set_canvas_sdf_collision ( pt - > particles , false , Transform2D ( ) , Rect2 ( ) , RID ( ) ) ;
}
r_sdf_used | = particles_storage - > particles_has_collision ( particles ) ;
}
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
Color modulated = modulate * base_color ;
if ( use_linear_colors ) {
modulated = modulated . srgb_to_linear ( ) ;
}
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
instance_data - > modulation [ 0 ] = modulated . r ;
instance_data - > modulation [ 1 ] = modulated . g ;
instance_data - > modulation [ 2 ] = modulated . b ;
instance_data - > modulation [ 3 ] = modulated . a ;
2019-07-21 14:31:30 +00:00
2024-09-13 20:05:06 +00:00
_add_to_batch ( r_index , r_batch_broken , r_current_batch ) ;
2024-07-29 21:23:03 +00:00
} break ;
case Item : : Command : : TYPE_TRANSFORM : {
const Item : : CommandTransform * transform = static_cast < const Item : : CommandTransform * > ( c ) ;
draw_transform = transform - > xform ;
_update_transform_2d_to_mat2x3 ( base_transform * transform - > xform , world ) ;
} break ;
case Item : : Command : : TYPE_CLIP_IGNORE : {
const Item : : CommandClipIgnore * ci = static_cast < const Item : : CommandClipIgnore * > ( c ) ;
if ( r_current_clip ) {
if ( ci - > ignore ! = reclip ) {
2024-09-13 20:05:06 +00:00
r_current_batch = _new_batch ( r_batch_broken ) ;
2024-07-29 21:23:03 +00:00
if ( ci - > ignore ) {
2024-09-13 20:05:06 +00:00
r_current_batch - > clip = nullptr ;
2024-07-29 21:23:03 +00:00
reclip = true ;
} else {
2024-09-13 20:05:06 +00:00
r_current_batch - > clip = r_current_clip ;
2024-07-29 21:23:03 +00:00
reclip = false ;
}
}
}
} break ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
case Item : : Command : : TYPE_ANIMATION_SLICE : {
const Item : : CommandAnimationSlice * as = static_cast < const Item : : CommandAnimationSlice * > ( c ) ;
double current_time = RSG : : rasterizer - > get_total_time ( ) ;
double local_time = Math : : fposmod ( current_time - as - > offset , as - > animation_length ) ;
skipping = ! ( local_time > = as - > slice_begin & & local_time < as - > slice_end ) ;
2019-07-21 14:31:30 +00:00
2024-07-29 21:23:03 +00:00
RenderingServerDefault : : redraw_request ( ) ; // animation visible means redraw request
} break ;
}
2020-04-17 02:52:00 +00:00
2024-07-29 21:23:03 +00:00
c = c - > next ;
r_batch_broken = false ;
2019-07-21 14:31:30 +00:00
}
2024-10-29 21:27:16 +00:00
# ifdef DEBUG_ENABLED
if ( debug_redraw & & p_item - > debug_redraw_time > 0.0 ) {
Color dc = debug_redraw_color ;
dc . a * = p_item - > debug_redraw_time / debug_redraw_time ;
// 1: If commands are different, start a new batch.
if ( r_current_batch - > command_type ! = Item : : Command : : TYPE_RECT ) {
r_current_batch = _new_batch ( r_batch_broken ) ;
r_current_batch - > command_type = Item : : Command : : TYPE_RECT ;
// it is ok to be null for a TYPE_RECT
r_current_batch - > command = nullptr ;
// default variant
r_current_batch - > shader_variant = SHADER_VARIANT_QUAD ;
r_current_batch - > render_primitive = RD : : RENDER_PRIMITIVE_TRIANGLES ;
}
// 2: If the current batch has lighting, start a new batch.
if ( r_current_batch - > use_lighting ) {
r_current_batch = _new_batch ( r_batch_broken ) ;
r_current_batch - > use_lighting = false ;
}
// 3: If the current batch has blend, start a new batch.
if ( r_current_batch - > has_blend ) {
r_current_batch = _new_batch ( r_batch_broken ) ;
r_current_batch - > has_blend = false ;
}
TextureState tex_state ( default_canvas_texture , texture_filter , texture_repeat , false , use_linear_colors ) ;
TextureInfo * tex_info = texture_info_map . getptr ( tex_state ) ;
if ( ! tex_info ) {
tex_info = & texture_info_map . insert ( tex_state , TextureInfo ( ) ) - > value ;
_prepare_batch_texture_info ( default_canvas_texture , tex_state , tex_info ) ;
}
if ( r_current_batch - > tex_info ! = tex_info ) {
r_current_batch = _new_batch ( r_batch_broken ) ;
r_current_batch - > tex_info = tex_info ;
}
InstanceData * instance_data = new_instance_data ( world , lights , base_flags , r_index , tex_info ) ;
Rect2 src_rect ;
Rect2 dst_rect ;
dst_rect = Rect2 ( Vector2 ( ) , p_item - > rect . size ) ;
if ( dst_rect . size . width < 0 ) {
dst_rect . position . x + = dst_rect . size . width ;
dst_rect . size . width * = - 1 ;
}
if ( dst_rect . size . height < 0 ) {
dst_rect . position . y + = dst_rect . size . height ;
dst_rect . size . height * = - 1 ;
}
src_rect = Rect2 ( 0 , 0 , 1 , 1 ) ;
instance_data - > modulation [ 0 ] = dc . r ;
instance_data - > modulation [ 1 ] = dc . g ;
instance_data - > modulation [ 2 ] = dc . b ;
instance_data - > modulation [ 3 ] = dc . a ;
instance_data - > src_rect [ 0 ] = src_rect . position . x ;
instance_data - > src_rect [ 1 ] = src_rect . position . y ;
instance_data - > src_rect [ 2 ] = src_rect . size . width ;
instance_data - > src_rect [ 3 ] = src_rect . size . height ;
instance_data - > dst_rect [ 0 ] = dst_rect . position . x ;
instance_data - > dst_rect [ 1 ] = dst_rect . position . y ;
instance_data - > dst_rect [ 2 ] = dst_rect . size . width ;
instance_data - > dst_rect [ 3 ] = dst_rect . size . height ;
_add_to_batch ( r_index , r_batch_broken , r_current_batch ) ;
p_item - > debug_redraw_time - = RSG : : rasterizer - > get_frame_delta_time ( ) ;
RenderingServerDefault : : redraw_request ( ) ;
r_batch_broken = false ;
}
# endif
2024-07-29 21:23:03 +00:00
if ( r_current_clip & & reclip ) {
// will make it re-enable clipping if needed afterwards
r_current_clip = nullptr ;
}
}
2019-07-05 01:54:32 +00:00
2024-10-29 21:27:16 +00:00
void RendererCanvasRenderRD : : _before_evict ( RendererCanvasRenderRD : : RIDSetKey & p_key , RID & p_rid ) {
RD : : get_singleton ( ) - > uniform_set_set_invalidation_callback ( p_rid , nullptr , nullptr ) ;
RD : : get_singleton ( ) - > free ( p_rid ) ;
}
2019-07-05 01:54:32 +00:00
2024-10-29 21:27:16 +00:00
void RendererCanvasRenderRD : : _uniform_set_invalidation_callback ( void * p_userdata ) {
const RIDSetKey * key = static_cast < RIDSetKey * > ( p_userdata ) ;
static_cast < RendererCanvasRenderRD * > ( singleton ) - > rid_set_to_uniform_set . erase ( * key ) ;
}
2019-07-05 01:54:32 +00:00
2024-10-29 21:27:16 +00:00
void RendererCanvasRenderRD : : _render_batch ( RD : : DrawListID p_draw_list , CanvasShaderData * p_shader_data , RenderingDevice : : FramebufferFormatID p_framebuffer_format , Light * p_lights , Batch const * p_batch , RenderingMethod : : RenderInfo * r_render_info ) {
2024-09-27 18:05:46 +00:00
{
2024-10-29 21:27:16 +00:00
RIDSetKey key (
p_batch - > tex_info - > state ,
state . canvas_instance_data_buffers [ state . current_data_buffer_index ] . instance_buffers [ p_batch - > instance_buffer_index ] ) ;
const RID * uniform_set = rid_set_to_uniform_set . getptr ( key ) ;
if ( uniform_set = = nullptr ) {
state . batch_texture_uniforms . write [ 0 ] = RD : : Uniform ( RD : : UNIFORM_TYPE_TEXTURE , 0 , p_batch - > tex_info - > diffuse ) ;
state . batch_texture_uniforms . write [ 1 ] = RD : : Uniform ( RD : : UNIFORM_TYPE_TEXTURE , 1 , p_batch - > tex_info - > normal ) ;
state . batch_texture_uniforms . write [ 2 ] = RD : : Uniform ( RD : : UNIFORM_TYPE_TEXTURE , 2 , p_batch - > tex_info - > specular ) ;
state . batch_texture_uniforms . write [ 3 ] = RD : : Uniform ( RD : : UNIFORM_TYPE_SAMPLER , 3 , p_batch - > tex_info - > sampler ) ;
state . batch_texture_uniforms . write [ 4 ] = RD : : Uniform ( RD : : UNIFORM_TYPE_STORAGE_BUFFER , 4 , state . canvas_instance_data_buffers [ state . current_data_buffer_index ] . instance_buffers [ p_batch - > instance_buffer_index ] ) ;
RID rid = RD : : get_singleton ( ) - > uniform_set_create ( state . batch_texture_uniforms , shader . default_version_rd_shader , BATCH_UNIFORM_SET ) ;
ERR_FAIL_COND_MSG ( rid . is_null ( ) , " Failed to create uniform set for batch. " ) ;
const RIDCache : : Pair * iter = rid_set_to_uniform_set . insert ( key , rid ) ;
uniform_set = & iter - > data ;
RD : : get_singleton ( ) - > uniform_set_set_invalidation_callback ( rid , RendererCanvasRenderRD : : _uniform_set_invalidation_callback , ( void * ) & iter - > key ) ;
}
2024-09-27 18:05:46 +00:00
2024-10-29 21:27:16 +00:00
if ( state . current_batch_uniform_set ! = * uniform_set ) {
state . current_batch_uniform_set = * uniform_set ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( p_draw_list , * uniform_set , BATCH_UNIFORM_SET ) ;
2024-09-27 18:05:46 +00:00
}
}
2024-10-29 21:27:16 +00:00
PushConstant push_constant ;
push_constant . base_instance_index = p_batch - > start ;
push_constant . specular_shininess = p_batch - > tex_info - > specular_shininess ;
2019-07-05 01:54:32 +00:00
2024-03-15 17:13:31 +00:00
RID pipeline ;
PipelineKey pipeline_key ;
pipeline_key . framebuffer_format_id = p_framebuffer_format ;
pipeline_key . variant = p_batch - > shader_variant ;
pipeline_key . render_primitive = p_batch - > render_primitive ;
pipeline_key . shader_specialization . use_lighting = p_batch - > use_lighting ;
pipeline_key . lcd_blend = p_batch - > has_blend ;
2024-07-29 21:23:03 +00:00
switch ( p_batch - > command_type ) {
case Item : : Command : : TYPE_RECT :
case Item : : Command : : TYPE_NINEPATCH : {
2024-03-15 17:13:31 +00:00
pipeline = _get_pipeline_specialization_or_ubershader ( p_shader_data , pipeline_key , push_constant ) ;
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( p_draw_list , pipeline ) ;
if ( p_batch - > has_blend ) {
RD : : get_singleton ( ) - > draw_list_set_blend_constants ( p_draw_list , p_batch - > modulate ) ;
}
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_set_push_constant ( p_draw_list , & push_constant , sizeof ( PushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( p_draw_list , shader . quad_index_array ) ;
RD : : get_singleton ( ) - > draw_list_draw ( p_draw_list , true , p_batch - > instance_count ) ;
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
if ( r_render_info ) {
r_render_info - > info [ RS : : VIEWPORT_RENDER_INFO_TYPE_CANVAS ] [ RS : : VIEWPORT_RENDER_INFO_OBJECTS_IN_FRAME ] + = p_batch - > instance_count ;
r_render_info - > info [ RS : : VIEWPORT_RENDER_INFO_TYPE_CANVAS ] [ RS : : VIEWPORT_RENDER_INFO_PRIMITIVES_IN_FRAME ] + = 2 * p_batch - > instance_count ;
r_render_info - > info [ RS : : VIEWPORT_RENDER_INFO_TYPE_CANVAS ] [ RS : : VIEWPORT_RENDER_INFO_DRAW_CALLS_IN_FRAME ] + + ;
}
} break ;
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
case Item : : Command : : TYPE_POLYGON : {
2024-10-29 21:27:16 +00:00
ERR_FAIL_NULL ( p_batch - > command ) ;
2024-07-29 21:23:03 +00:00
const Item : : CommandPolygon * polygon = static_cast < const Item : : CommandPolygon * > ( p_batch - > command ) ;
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
PolygonBuffers * pb = polygon_buffers . polygons . getptr ( polygon - > polygon . polygon_id ) ;
ERR_FAIL_NULL ( pb ) ;
2020-11-26 12:50:21 +00:00
2024-03-15 17:13:31 +00:00
pipeline_key . vertex_format_id = pb - > vertex_format_id ;
pipeline = _get_pipeline_specialization_or_ubershader ( p_shader_data , pipeline_key , push_constant ) ;
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( p_draw_list , pipeline ) ;
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_set_push_constant ( p_draw_list , & push_constant , sizeof ( PushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_vertex_array ( p_draw_list , pb - > vertex_array ) ;
if ( pb - > indices . is_valid ( ) ) {
RD : : get_singleton ( ) - > draw_list_bind_index_array ( p_draw_list , pb - > indices ) ;
}
2019-07-05 01:54:32 +00:00
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_draw ( p_draw_list , pb - > indices . is_valid ( ) ) ;
if ( r_render_info ) {
r_render_info - > info [ RS : : VIEWPORT_RENDER_INFO_TYPE_CANVAS ] [ RS : : VIEWPORT_RENDER_INFO_OBJECTS_IN_FRAME ] + + ;
r_render_info - > info [ RS : : VIEWPORT_RENDER_INFO_TYPE_CANVAS ] [ RS : : VIEWPORT_RENDER_INFO_PRIMITIVES_IN_FRAME ] + = _indices_to_primitives ( polygon - > primitive , pb - > primitive_count ) ;
r_render_info - > info [ RS : : VIEWPORT_RENDER_INFO_TYPE_CANVAS ] [ RS : : VIEWPORT_RENDER_INFO_DRAW_CALLS_IN_FRAME ] + + ;
}
} break ;
2020-11-26 12:50:21 +00:00
2024-07-29 21:23:03 +00:00
case Item : : Command : : TYPE_PRIMITIVE : {
2024-10-29 21:27:16 +00:00
ERR_FAIL_NULL ( p_batch - > command ) ;
2024-07-29 21:23:03 +00:00
const Item : : CommandPrimitive * primitive = static_cast < const Item : : CommandPrimitive * > ( p_batch - > command ) ;
2019-07-05 01:54:32 +00:00
2024-03-15 17:13:31 +00:00
pipeline = _get_pipeline_specialization_or_ubershader ( p_shader_data , pipeline_key , push_constant ) ;
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( p_draw_list , pipeline ) ;
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_set_push_constant ( p_draw_list , & push_constant , sizeof ( PushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( p_draw_list , primitive_arrays . index_array [ MIN ( 3u , primitive - > point_count ) - 1 ] ) ;
uint32_t instance_count = p_batch - > instance_count ;
RD : : get_singleton ( ) - > draw_list_draw ( p_draw_list , true , instance_count ) ;
2019-06-24 19:13:06 +00:00
2024-07-29 21:23:03 +00:00
if ( r_render_info ) {
const RenderingServer : : PrimitiveType rs_primitive [ 5 ] = { RS : : PRIMITIVE_POINTS , RS : : PRIMITIVE_POINTS , RS : : PRIMITIVE_LINES , RS : : PRIMITIVE_TRIANGLES , RS : : PRIMITIVE_TRIANGLES } ;
r_render_info - > info [ RS : : VIEWPORT_RENDER_INFO_TYPE_CANVAS ] [ RS : : VIEWPORT_RENDER_INFO_OBJECTS_IN_FRAME ] + = instance_count ;
r_render_info - > info [ RS : : VIEWPORT_RENDER_INFO_TYPE_CANVAS ] [ RS : : VIEWPORT_RENDER_INFO_PRIMITIVES_IN_FRAME ] + = _indices_to_primitives ( rs_primitive [ p_batch - > primitive_points ] , p_batch - > primitive_points ) * instance_count ;
r_render_info - > info [ RS : : VIEWPORT_RENDER_INFO_TYPE_CANVAS ] [ RS : : VIEWPORT_RENDER_INFO_DRAW_CALLS_IN_FRAME ] + + ;
}
} break ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
case Item : : Command : : TYPE_MESH :
case Item : : Command : : TYPE_MULTIMESH :
case Item : : Command : : TYPE_PARTICLES : {
2024-10-29 21:27:16 +00:00
ERR_FAIL_NULL ( p_batch - > command ) ;
2024-07-29 21:23:03 +00:00
RendererRD : : MeshStorage * mesh_storage = RendererRD : : MeshStorage : : get_singleton ( ) ;
RendererRD : : ParticlesStorage * particles_storage = RendererRD : : ParticlesStorage : : get_singleton ( ) ;
RID mesh ;
RID mesh_instance ;
if ( p_batch - > command_type = = Item : : Command : : TYPE_MESH ) {
const Item : : CommandMesh * m = static_cast < const Item : : CommandMesh * > ( p_batch - > command ) ;
mesh = m - > mesh ;
mesh_instance = m - > mesh_instance ;
} else if ( p_batch - > command_type = = Item : : Command : : TYPE_MULTIMESH ) {
const Item : : CommandMultiMesh * mm = static_cast < const Item : : CommandMultiMesh * > ( p_batch - > command ) ;
RID multimesh = mm - > multimesh ;
mesh = mesh_storage - > multimesh_get_mesh ( multimesh ) ;
RID uniform_set = mesh_storage - > multimesh_get_2d_uniform_set ( multimesh , shader . default_version_rd_shader , TRANSFORMS_UNIFORM_SET ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( p_draw_list , uniform_set , TRANSFORMS_UNIFORM_SET ) ;
} else if ( p_batch - > command_type = = Item : : Command : : TYPE_PARTICLES ) {
const Item : : CommandParticles * pt = static_cast < const Item : : CommandParticles * > ( p_batch - > command ) ;
RID particles = pt - > particles ;
mesh = particles_storage - > particles_get_draw_pass_mesh ( particles , 0 ) ;
ERR_BREAK ( particles_storage - > particles_get_mode ( particles ) ! = RS : : PARTICLES_MODE_2D ) ;
particles_storage - > particles_request_process ( particles ) ;
if ( particles_storage - > particles_is_inactive ( particles ) ) {
break ;
}
2019-06-24 19:13:06 +00:00
2024-07-29 21:23:03 +00:00
RenderingServerDefault : : redraw_request ( ) ; // Active particles means redraw request.
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
int dpc = particles_storage - > particles_get_draw_passes ( particles ) ;
if ( dpc = = 0 ) {
break ; // Nothing to draw.
}
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
RID uniform_set = particles_storage - > particles_get_instance_buffer_uniform_set ( pt - > particles , shader . default_version_rd_shader , TRANSFORMS_UNIFORM_SET ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( p_draw_list , uniform_set , TRANSFORMS_UNIFORM_SET ) ;
}
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
if ( mesh . is_null ( ) ) {
break ;
}
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
uint32_t surf_count = mesh_storage - > mesh_get_surface_count ( mesh ) ;
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
for ( uint32_t j = 0 ; j < surf_count ; j + + ) {
void * surface = mesh_storage - > mesh_get_surface ( mesh , j ) ;
2020-10-24 15:15:43 +00:00
2024-07-29 21:23:03 +00:00
RS : : PrimitiveType primitive = mesh_storage - > mesh_surface_get_primitive ( surface ) ;
ERR_CONTINUE ( primitive < 0 | | primitive > = RS : : PRIMITIVE_MAX ) ;
2019-06-16 02:45:24 +00:00
2024-07-29 21:23:03 +00:00
RID vertex_array ;
2024-03-15 17:13:31 +00:00
pipeline_key . variant = primitive = = RS : : PRIMITIVE_POINTS ? SHADER_VARIANT_ATTRIBUTES_POINTS : SHADER_VARIANT_ATTRIBUTES ;
pipeline_key . render_primitive = _primitive_type_to_render_primitive ( primitive ) ;
2024-10-03 23:27:14 +00:00
pipeline_key . vertex_format_id = RD : : INVALID_FORMAT_ID ;
2024-03-15 17:13:31 +00:00
2024-10-03 23:27:14 +00:00
pipeline = _get_pipeline_specialization_or_ubershader ( p_shader_data , pipeline_key , push_constant , mesh_instance , surface , j , & vertex_array ) ;
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( p_draw_list , pipeline ) ;
2021-08-18 01:09:22 +00:00
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_set_push_constant ( p_draw_list , & push_constant , sizeof ( PushConstant ) ) ;
2021-02-09 16:19:03 +00:00
2024-07-29 21:23:03 +00:00
RID index_array = mesh_storage - > mesh_surface_get_index_array ( surface , 0 ) ;
2023-01-05 19:55:59 +00:00
2024-07-29 21:23:03 +00:00
if ( index_array . is_valid ( ) ) {
RD : : get_singleton ( ) - > draw_list_bind_index_array ( p_draw_list , index_array ) ;
}
2021-07-19 06:06:51 +00:00
2024-07-29 21:23:03 +00:00
RD : : get_singleton ( ) - > draw_list_bind_vertex_array ( p_draw_list , vertex_array ) ;
RD : : get_singleton ( ) - > draw_list_draw ( p_draw_list , index_array . is_valid ( ) , p_batch - > mesh_instance_count ) ;
2021-07-19 06:06:51 +00:00
2024-07-29 21:23:03 +00:00
if ( r_render_info ) {
r_render_info - > info [ RS : : VIEWPORT_RENDER_INFO_TYPE_CANVAS ] [ RS : : VIEWPORT_RENDER_INFO_OBJECTS_IN_FRAME ] + + ;
r_render_info - > info [ RS : : VIEWPORT_RENDER_INFO_TYPE_CANVAS ] [ RS : : VIEWPORT_RENDER_INFO_PRIMITIVES_IN_FRAME ] + = _indices_to_primitives ( primitive , mesh_storage - > mesh_surface_get_vertices_drawn_count ( surface ) ) * p_batch - > mesh_instance_count ;
r_render_info - > info [ RS : : VIEWPORT_RENDER_INFO_TYPE_CANVAS ] [ RS : : VIEWPORT_RENDER_INFO_DRAW_CALLS_IN_FRAME ] + + ;
}
}
} break ;
case Item : : Command : : TYPE_TRANSFORM :
case Item : : Command : : TYPE_CLIP_IGNORE :
case Item : : Command : : TYPE_ANIMATION_SLICE : {
// Can ignore these as they only impact batch creation.
} break ;
}
2021-07-19 06:06:51 +00:00
}
2021-02-09 16:19:03 +00:00
2024-07-29 21:23:03 +00:00
RendererCanvasRenderRD : : Batch * RendererCanvasRenderRD : : _new_batch ( bool & r_batch_broken ) {
if ( state . canvas_instance_batches . size ( ) = = 0 ) {
state . canvas_instance_batches . push_back ( Batch ( ) ) ;
return state . canvas_instance_batches . ptr ( ) ;
2020-10-28 18:34:27 +00:00
}
2024-07-29 21:23:03 +00:00
if ( r_batch_broken | | state . canvas_instance_batches [ state . current_batch_index ] . instance_count = = 0 ) {
return & state . canvas_instance_batches [ state . current_batch_index ] ;
}
2022-10-12 19:45:47 +00:00
2024-07-29 21:23:03 +00:00
r_batch_broken = true ;
2023-01-05 19:55:59 +00:00
2024-07-29 21:23:03 +00:00
// Copy the properties of the current batch, we will manually update the things that changed.
Batch new_batch = state . canvas_instance_batches [ state . current_batch_index ] ;
new_batch . instance_count = 0 ;
new_batch . start = state . canvas_instance_batches [ state . current_batch_index ] . start + state . canvas_instance_batches [ state . current_batch_index ] . instance_count ;
new_batch . instance_buffer_index = state . current_instance_buffer_index ;
state . current_batch_index + + ;
state . canvas_instance_batches . push_back ( new_batch ) ;
return & state . canvas_instance_batches [ state . current_batch_index ] ;
2022-10-06 22:27:11 +00:00
}
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : _add_to_batch ( uint32_t & r_index , bool & r_batch_broken , Batch * & r_current_batch ) {
r_current_batch - > instance_count + + ;
r_index + + ;
if ( r_index + state . last_instance_index > = state . max_instances_per_buffer ) {
// Copy over all data needed for rendering right away
// then go back to recording item commands.
RD : : get_singleton ( ) - > buffer_update (
state . canvas_instance_data_buffers [ state . current_data_buffer_index ] . instance_buffers [ state . current_instance_buffer_index ] ,
state . last_instance_index * sizeof ( InstanceData ) ,
r_index * sizeof ( InstanceData ) ,
state . instance_data_array ) ;
_allocate_instance_buffer ( ) ;
r_index = 0 ;
state . last_instance_index = 0 ;
r_batch_broken = false ; // Force a new batch to be created
r_current_batch = _new_batch ( r_batch_broken ) ;
r_current_batch - > start = 0 ;
2022-10-06 22:27:11 +00:00
}
2019-06-16 02:45:24 +00:00
}
2019-06-24 19:13:06 +00:00
2024-07-29 21:23:03 +00:00
void RendererCanvasRenderRD : : _allocate_instance_buffer ( ) {
state . current_instance_buffer_index + + ;
if ( state . current_instance_buffer_index < state . canvas_instance_data_buffers [ state . current_data_buffer_index ] . instance_buffers . size ( ) ) {
// We already allocated another buffer in a previous frame, so we can just use it.
return ;
2019-07-05 01:54:32 +00:00
}
2024-07-29 21:23:03 +00:00
// Allocate a new buffer.
RID buf = RD : : get_singleton ( ) - > storage_buffer_create ( state . max_instance_buffer_size ) ;
state . canvas_instance_data_buffers [ state . current_data_buffer_index ] . instance_buffers . push_back ( buf ) ;
2019-07-05 01:54:32 +00:00
}
2024-10-29 21:27:16 +00:00
void RendererCanvasRenderRD : : _prepare_batch_texture_info ( RID p_texture , TextureState & p_state , TextureInfo * p_info ) {
2024-07-29 21:23:03 +00:00
if ( p_texture . is_null ( ) ) {
p_texture = default_canvas_texture ;
}
2024-09-27 18:05:46 +00:00
RendererRD : : TextureStorage : : CanvasTextureInfo info =
RendererRD : : TextureStorage : : get_singleton ( ) - > canvas_texture_get_info (
p_texture ,
2024-10-29 21:27:16 +00:00
p_state . texture_filter ( ) ,
p_state . texture_repeat ( ) ,
p_state . linear_colors ( ) ,
p_state . texture_is_data ( ) ) ;
2024-07-29 21:23:03 +00:00
// something odd happened
2024-09-27 18:05:46 +00:00
if ( info . is_null ( ) ) {
2024-10-29 21:27:16 +00:00
_prepare_batch_texture_info ( default_canvas_texture , p_state , p_info ) ;
2020-10-24 15:15:43 +00:00
return ;
}
2024-10-29 21:27:16 +00:00
p_info - > state = p_state ;
p_info - > diffuse = info . diffuse ;
p_info - > normal = info . normal ;
p_info - > specular = info . specular ;
p_info - > sampler = info . sampler ;
2020-10-24 15:15:43 +00:00
2024-09-27 18:05:46 +00:00
// cache values to be copied to instance data
if ( info . specular_color . a < 0.999 ) {
2024-10-29 21:27:16 +00:00
p_info - > flags | = FLAGS_DEFAULT_SPECULAR_MAP_USED ;
2020-10-24 15:15:43 +00:00
}
2024-07-29 21:23:03 +00:00
2024-09-27 18:05:46 +00:00
if ( info . use_normal ) {
2024-10-29 21:27:16 +00:00
p_info - > flags | = FLAGS_DEFAULT_NORMAL_MAP_USED ;
2024-07-29 21:23:03 +00:00
}
2024-09-27 18:05:46 +00:00
uint8_t a = uint8_t ( CLAMP ( info . specular_color . a * 255.0 , 0.0 , 255.0 ) ) ;
uint8_t b = uint8_t ( CLAMP ( info . specular_color . b * 255.0 , 0.0 , 255.0 ) ) ;
uint8_t g = uint8_t ( CLAMP ( info . specular_color . g * 255.0 , 0.0 , 255.0 ) ) ;
uint8_t r = uint8_t ( CLAMP ( info . specular_color . r * 255.0 , 0.0 , 255.0 ) ) ;
2024-10-29 21:27:16 +00:00
p_info - > specular_shininess = uint32_t ( a ) < < 24 | uint32_t ( b ) < < 16 | uint32_t ( g ) < < 8 | uint32_t ( r ) ;
2024-07-29 21:23:03 +00:00
2024-10-29 21:27:16 +00:00
p_info - > texpixel_size = Vector2 ( 1.0 / float ( info . size . width ) , 1.0 / float ( info . size . height ) ) ;
2023-07-07 17:35:54 +00:00
}
2020-12-04 18:26:24 +00:00
RendererCanvasRenderRD : : ~ RendererCanvasRenderRD ( ) {
2022-03-21 11:25:25 +00:00
RendererRD : : MaterialStorage * material_storage = RendererRD : : MaterialStorage : : get_singleton ( ) ;
2019-06-24 19:13:06 +00:00
//canvas state
2022-03-21 11:25:25 +00:00
material_storage - > material_free ( default_canvas_group_material ) ;
material_storage - > shader_free ( default_canvas_group_shader ) ;
2020-10-28 18:34:27 +00:00
2022-10-06 22:27:11 +00:00
material_storage - > material_free ( default_clip_children_material ) ;
material_storage - > shader_free ( default_clip_children_shader ) ;
2019-07-29 21:19:31 +00:00
{
if ( state . canvas_state_buffer . is_valid ( ) ) {
RD : : get_singleton ( ) - > free ( state . canvas_state_buffer ) ;
}
memdelete_arr ( state . light_uniforms ) ;
RD : : get_singleton ( ) - > free ( state . lights_uniform_buffer ) ;
2019-06-24 19:13:06 +00:00
}
2019-07-29 21:19:31 +00:00
//shadow rendering
{
shadow_render . shader . version_free ( shadow_render . shader_version ) ;
//this will also automatically clear all pipelines
RD : : get_singleton ( ) - > free ( state . shadow_sampler ) ;
}
2019-06-24 19:13:06 +00:00
//buffers
2019-07-29 21:19:31 +00:00
{
RD : : get_singleton ( ) - > free ( shader . quad_index_array ) ;
RD : : get_singleton ( ) - > free ( shader . quad_index_buffer ) ;
//primitives are erase by dependency
}
2019-06-24 19:13:06 +00:00
2020-10-24 15:15:43 +00:00
if ( state . shadow_fb . is_valid ( ) ) {
RD : : get_singleton ( ) - > free ( state . shadow_depth_texture ) ;
}
RD : : get_singleton ( ) - > free ( state . shadow_texture ) ;
2024-07-29 21:23:03 +00:00
memdelete_arr ( state . instance_data_array ) ;
2024-10-29 21:27:16 +00:00
for ( uint32_t i = 0 ; i < BATCH_DATA_BUFFER_COUNT ; i + + ) {
2024-07-29 21:23:03 +00:00
for ( uint32_t j = 0 ; j < state . canvas_instance_data_buffers [ i ] . instance_buffers . size ( ) ; j + + ) {
RD : : get_singleton ( ) - > free ( state . canvas_instance_data_buffers [ i ] . instance_buffers [ j ] ) ;
}
}
2022-04-07 14:00:51 +00:00
RendererRD : : TextureStorage : : get_singleton ( ) - > canvas_texture_free ( default_canvas_texture ) ;
2019-06-24 19:13:06 +00:00
//pipelines don't need freeing, they are all gone after shaders are gone
2024-03-15 17:13:31 +00:00
memdelete ( shader . default_version_data ) ;
2019-06-24 19:13:06 +00:00
}