2019-11-05 12:01:00 +01:00
/*************************************************************************/
2020-12-04 19:26:24 +01:00
/* effects_rd.cpp */
2019-11-05 12:01:00 +01:00
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
2021-01-01 20:13:46 +01:00
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
2019-11-05 12:01:00 +01: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 19:26:24 +01:00
# include "effects_rd.h"
2020-03-28 13:29:29 +01:00
2020-11-07 23:33:38 +01:00
# include "core/config/project_settings.h"
2020-12-08 06:37:09 +01:00
# include "core/math/math_defs.h"
2020-01-16 01:23:21 +01:00
# include "core/os/os.h"
2020-03-28 13:29:29 +01:00
2021-05-07 15:19:04 +02:00
# include "servers/rendering/renderer_rd/renderer_compositor_rd.h"
2020-03-28 13:29:29 +01:00
# include "thirdparty/misc/cubemap_coeffs.h"
2019-07-27 15:23:24 +02:00
2021-07-27 15:33:47 +02:00
bool EffectsRD : : get_prefer_raster_effects ( ) {
return prefer_raster_effects ;
}
2020-04-02 04:24:52 +02:00
static _FORCE_INLINE_ void store_camera ( const CameraMatrix & p_mtx , float * p_array ) {
for ( int i = 0 ; i < 4 ; i + + ) {
for ( int j = 0 ; j < 4 ; j + + ) {
p_array [ i * 4 + j ] = p_mtx . matrix [ i ] [ j ] ;
}
}
}
2020-12-04 19:26:24 +01:00
RID EffectsRD : : _get_uniform_set_from_image ( RID p_image ) {
2020-01-12 02:26:52 +01:00
if ( image_to_uniform_set_cache . has ( p_image ) ) {
RID uniform_set = image_to_uniform_set_cache [ p_image ] ;
if ( RD : : get_singleton ( ) - > uniform_set_is_valid ( uniform_set ) ) {
return uniform_set ;
}
}
Vector < RD : : Uniform > uniforms ;
RD : : Uniform u ;
2020-10-17 03:19:21 +02:00
u . uniform_type = RD : : UNIFORM_TYPE_IMAGE ;
2020-01-12 02:26:52 +01:00
u . binding = 0 ;
u . ids . push_back ( p_image ) ;
uniforms . push_back ( u ) ;
//any thing with the same configuration (one texture in binding 0 for set 0), is good
RID uniform_set = RD : : get_singleton ( ) - > uniform_set_create ( uniforms , luminance_reduce . shader . version_get_shader ( luminance_reduce . shader_version , 0 ) , 1 ) ;
image_to_uniform_set_cache [ p_image ] = uniform_set ;
return uniform_set ;
}
2021-06-26 12:49:25 +02:00
RID EffectsRD : : _get_uniform_set_for_input ( RID p_texture ) {
if ( input_to_uniform_set_cache . has ( p_texture ) ) {
RID uniform_set = input_to_uniform_set_cache [ p_texture ] ;
if ( RD : : get_singleton ( ) - > uniform_set_is_valid ( uniform_set ) ) {
return uniform_set ;
}
}
Vector < RD : : Uniform > uniforms ;
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_INPUT_ATTACHMENT ;
u . binding = 0 ;
u . ids . push_back ( p_texture ) ;
uniforms . push_back ( u ) ;
// This is specific to our subpass shader
RID uniform_set = RD : : get_singleton ( ) - > uniform_set_create ( uniforms , tonemap . shader . version_get_shader ( tonemap . shader_version , TONEMAP_MODE_SUBPASS ) , 0 ) ;
input_to_uniform_set_cache [ p_texture ] = uniform_set ;
return uniform_set ;
}
2020-12-04 19:26:24 +01:00
RID EffectsRD : : _get_uniform_set_from_texture ( RID p_texture , bool p_use_mipmaps ) {
2019-07-27 15:23:24 +02:00
if ( texture_to_uniform_set_cache . has ( p_texture ) ) {
RID uniform_set = texture_to_uniform_set_cache [ p_texture ] ;
if ( RD : : get_singleton ( ) - > uniform_set_is_valid ( uniform_set ) ) {
return uniform_set ;
}
}
Vector < RD : : Uniform > uniforms ;
RD : : Uniform u ;
2020-10-17 03:19:21 +02:00
u . uniform_type = RD : : UNIFORM_TYPE_SAMPLER_WITH_TEXTURE ;
2019-07-27 15:23:24 +02:00
u . binding = 0 ;
2020-01-10 01:40:26 +01:00
u . ids . push_back ( p_use_mipmaps ? default_mipmap_sampler : default_sampler ) ;
2019-07-27 15:23:24 +02:00
u . ids . push_back ( p_texture ) ;
uniforms . push_back ( u ) ;
2021-06-26 12:49:25 +02:00
// anything with the same configuration (one texture in binding 0 for set 0), is good
2020-04-11 19:43:12 +02:00
RID uniform_set = RD : : get_singleton ( ) - > uniform_set_create ( uniforms , tonemap . shader . version_get_shader ( tonemap . shader_version , 0 ) , 0 ) ;
2019-07-27 15:23:24 +02:00
texture_to_uniform_set_cache [ p_texture ] = uniform_set ;
return uniform_set ;
}
2020-12-04 19:26:24 +01:00
RID EffectsRD : : _get_compute_uniform_set_from_texture ( RID p_texture , bool p_use_mipmaps ) {
2020-01-12 02:26:52 +01:00
if ( texture_to_compute_uniform_set_cache . has ( p_texture ) ) {
RID uniform_set = texture_to_compute_uniform_set_cache [ p_texture ] ;
if ( RD : : get_singleton ( ) - > uniform_set_is_valid ( uniform_set ) ) {
return uniform_set ;
}
}
Vector < RD : : Uniform > uniforms ;
RD : : Uniform u ;
2020-10-17 03:19:21 +02:00
u . uniform_type = RD : : UNIFORM_TYPE_SAMPLER_WITH_TEXTURE ;
2020-01-12 02:26:52 +01:00
u . binding = 0 ;
u . ids . push_back ( p_use_mipmaps ? default_mipmap_sampler : default_sampler ) ;
u . ids . push_back ( p_texture ) ;
uniforms . push_back ( u ) ;
//any thing with the same configuration (one texture in binding 0 for set 0), is good
RID uniform_set = RD : : get_singleton ( ) - > uniform_set_create ( uniforms , luminance_reduce . shader . version_get_shader ( luminance_reduce . shader_version , 0 ) , 0 ) ;
texture_to_compute_uniform_set_cache [ p_texture ] = uniform_set ;
return uniform_set ;
}
2020-12-08 06:37:09 +01:00
RID EffectsRD : : _get_compute_uniform_set_from_texture_and_sampler ( RID p_texture , RID p_sampler ) {
TextureSamplerPair tsp ;
tsp . texture = p_texture ;
tsp . sampler = p_sampler ;
if ( texture_sampler_to_compute_uniform_set_cache . has ( tsp ) ) {
RID uniform_set = texture_sampler_to_compute_uniform_set_cache [ tsp ] ;
if ( RD : : get_singleton ( ) - > uniform_set_is_valid ( uniform_set ) ) {
return uniform_set ;
}
}
Vector < RD : : Uniform > uniforms ;
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_SAMPLER_WITH_TEXTURE ;
u . binding = 0 ;
u . ids . push_back ( p_sampler ) ;
u . ids . push_back ( p_texture ) ;
uniforms . push_back ( u ) ;
//any thing with the same configuration (one texture in binding 0 for set 0), is good
RID uniform_set = RD : : get_singleton ( ) - > uniform_set_create ( uniforms , ssao . blur_shader . version_get_shader ( ssao . blur_shader_version , 0 ) , 0 ) ;
texture_sampler_to_compute_uniform_set_cache [ tsp ] = uniform_set ;
return uniform_set ;
}
2020-12-04 19:26:24 +01:00
RID EffectsRD : : _get_compute_uniform_set_from_texture_pair ( RID p_texture1 , RID p_texture2 , bool p_use_mipmaps ) {
2020-04-02 04:24:52 +02:00
TexturePair tp ;
tp . texture1 = p_texture1 ;
tp . texture2 = p_texture2 ;
if ( texture_pair_to_compute_uniform_set_cache . has ( tp ) ) {
RID uniform_set = texture_pair_to_compute_uniform_set_cache [ tp ] ;
if ( RD : : get_singleton ( ) - > uniform_set_is_valid ( uniform_set ) ) {
return uniform_set ;
}
}
Vector < RD : : Uniform > uniforms ;
{
RD : : Uniform u ;
2020-10-17 03:19:21 +02:00
u . uniform_type = RD : : UNIFORM_TYPE_SAMPLER_WITH_TEXTURE ;
2020-04-02 04:24:52 +02:00
u . binding = 0 ;
u . ids . push_back ( p_use_mipmaps ? default_mipmap_sampler : default_sampler ) ;
u . ids . push_back ( p_texture1 ) ;
uniforms . push_back ( u ) ;
}
{
RD : : Uniform u ;
2020-10-17 03:19:21 +02:00
u . uniform_type = RD : : UNIFORM_TYPE_SAMPLER_WITH_TEXTURE ;
2020-04-02 04:24:52 +02:00
u . binding = 1 ;
u . ids . push_back ( p_use_mipmaps ? default_mipmap_sampler : default_sampler ) ;
u . ids . push_back ( p_texture2 ) ;
uniforms . push_back ( u ) ;
}
//any thing with the same configuration (one texture in binding 0 for set 0), is good
RID uniform_set = RD : : get_singleton ( ) - > uniform_set_create ( uniforms , ssr_scale . shader . version_get_shader ( ssr_scale . shader_version , 0 ) , 1 ) ;
texture_pair_to_compute_uniform_set_cache [ tp ] = uniform_set ;
return uniform_set ;
}
2020-12-04 19:26:24 +01:00
RID EffectsRD : : _get_compute_uniform_set_from_image_pair ( RID p_texture1 , RID p_texture2 ) {
2020-04-02 04:24:52 +02:00
TexturePair tp ;
tp . texture1 = p_texture1 ;
tp . texture2 = p_texture2 ;
if ( image_pair_to_compute_uniform_set_cache . has ( tp ) ) {
RID uniform_set = image_pair_to_compute_uniform_set_cache [ tp ] ;
if ( RD : : get_singleton ( ) - > uniform_set_is_valid ( uniform_set ) ) {
return uniform_set ;
}
}
Vector < RD : : Uniform > uniforms ;
{
RD : : Uniform u ;
2020-10-17 03:19:21 +02:00
u . uniform_type = RD : : UNIFORM_TYPE_IMAGE ;
2020-04-02 04:24:52 +02:00
u . binding = 0 ;
u . ids . push_back ( p_texture1 ) ;
uniforms . push_back ( u ) ;
}
{
RD : : Uniform u ;
2020-10-17 03:19:21 +02:00
u . uniform_type = RD : : UNIFORM_TYPE_IMAGE ;
2020-04-02 04:24:52 +02:00
u . binding = 1 ;
u . ids . push_back ( p_texture2 ) ;
uniforms . push_back ( u ) ;
}
//any thing with the same configuration (one texture in binding 0 for set 0), is good
RID uniform_set = RD : : get_singleton ( ) - > uniform_set_create ( uniforms , ssr_scale . shader . version_get_shader ( ssr_scale . shader_version , 0 ) , 3 ) ;
image_pair_to_compute_uniform_set_cache [ tp ] = uniform_set ;
return uniform_set ;
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : copy_to_atlas_fb ( RID p_source_rd_texture , RID p_dest_framebuffer , const Rect2 & p_uv_rect , RD : : DrawListID p_draw_list , bool p_flip_y , bool p_panorama ) {
2021-04-27 16:19:21 +02:00
memset ( & copy_to_fb . push_constant , 0 , sizeof ( CopyToFbPushConstant ) ) ;
2020-04-14 05:05:21 +02:00
copy_to_fb . push_constant . use_section = true ;
copy_to_fb . push_constant . section [ 0 ] = p_uv_rect . position . x ;
copy_to_fb . push_constant . section [ 1 ] = p_uv_rect . position . y ;
copy_to_fb . push_constant . section [ 2 ] = p_uv_rect . size . x ;
copy_to_fb . push_constant . section [ 3 ] = p_uv_rect . size . y ;
if ( p_flip_y ) {
copy_to_fb . push_constant . flip_y = true ;
}
RD : : DrawListID draw_list = p_draw_list ;
2020-04-14 22:05:45 +02:00
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , copy_to_fb . pipelines [ p_panorama ? COPY_TO_FB_COPY_PANORAMA_TO_DP : COPY_TO_FB_COPY ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( p_dest_framebuffer ) ) ) ;
2020-04-14 05:05:21 +02:00
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_source_rd_texture ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & copy_to_fb . push_constant , sizeof ( CopyToFbPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : copy_to_fb_rect ( RID p_source_rd_texture , RID p_dest_framebuffer , const Rect2i & p_rect , bool p_flip_y , bool p_force_luminance , bool p_alpha_to_zero , bool p_srgb , RID p_secondary ) {
2021-04-27 16:19:21 +02:00
memset ( & copy_to_fb . push_constant , 0 , sizeof ( CopyToFbPushConstant ) ) ;
2020-04-08 03:51:52 +02:00
if ( p_flip_y ) {
2020-04-11 19:43:12 +02:00
copy_to_fb . push_constant . flip_y = true ;
}
if ( p_force_luminance ) {
copy_to_fb . push_constant . force_luminance = true ;
2020-04-08 03:51:52 +02:00
}
2020-04-14 05:05:21 +02:00
if ( p_alpha_to_zero ) {
copy_to_fb . push_constant . alpha_to_zero = true ;
}
2020-06-25 15:33:28 +02:00
if ( p_srgb ) {
copy_to_fb . push_constant . srgb = true ;
}
2020-04-08 03:51:52 +02:00
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( p_dest_framebuffer , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_DISCARD , Vector < Color > ( ) , 1.0 , 0 , p_rect ) ;
2020-06-25 15:33:28 +02:00
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , copy_to_fb . pipelines [ p_secondary . is_valid ( ) ? COPY_TO_FB_COPY2 : COPY_TO_FB_COPY ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( p_dest_framebuffer ) ) ) ;
2020-04-08 03:51:52 +02:00
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_source_rd_texture ) , 0 ) ;
2020-06-25 15:33:28 +02:00
if ( p_secondary . is_valid ( ) ) {
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_secondary ) , 1 ) ;
}
2020-04-08 03:51:52 +02:00
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
2020-04-11 19:43:12 +02:00
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & copy_to_fb . push_constant , sizeof ( CopyToFbPushConstant ) ) ;
2020-04-08 03:51:52 +02:00
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : copy_to_rect ( RID p_source_rd_texture , RID p_dest_texture , const Rect2i & p_rect , bool p_flip_y , bool p_force_luminance , bool p_all_source , bool p_8_bit_dst , bool p_alpha_to_one ) {
2021-04-27 16:19:21 +02:00
memset ( & copy . push_constant , 0 , sizeof ( CopyPushConstant ) ) ;
2019-09-07 03:51:27 +02:00
if ( p_flip_y ) {
2020-04-11 19:43:12 +02:00
copy . push_constant . flags | = COPY_FLAG_FLIP_Y ;
2019-09-07 03:51:27 +02:00
}
2020-04-11 19:43:12 +02:00
2020-01-25 11:18:55 +01:00
if ( p_force_luminance ) {
2020-04-11 19:43:12 +02:00
copy . push_constant . flags | = COPY_FLAG_FORCE_LUMINANCE ;
2020-01-25 11:18:55 +01:00
}
2019-09-07 03:51:27 +02:00
2020-04-11 19:43:12 +02:00
if ( p_all_source ) {
copy . push_constant . flags | = COPY_FLAG_ALL_SOURCE ;
}
2020-10-28 19:34:27 +01:00
if ( p_alpha_to_one ) {
copy . push_constant . flags | = COPY_FLAG_ALPHA_TO_ONE ;
}
2020-04-11 19:43:12 +02:00
copy . push_constant . section [ 0 ] = 0 ;
copy . push_constant . section [ 1 ] = 0 ;
copy . push_constant . section [ 2 ] = p_rect . size . width ;
copy . push_constant . section [ 3 ] = p_rect . size . height ;
copy . push_constant . target [ 0 ] = p_rect . position . x ;
copy . push_constant . target [ 1 ] = p_rect . position . y ;
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , copy . pipelines [ p_8_bit_dst ? COPY_MODE_SIMPLY_COPY_8BIT : COPY_MODE_SIMPLY_COPY ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_source_rd_texture ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_dest_texture ) , 3 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & copy . push_constant , sizeof ( CopyPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_rect . size . width , p_rect . size . height , 1 ) ;
2020-04-11 19:43:12 +02:00
RD : : get_singleton ( ) - > compute_list_end ( ) ;
2019-09-07 03:51:27 +02:00
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : copy_cubemap_to_panorama ( RID p_source_cube , RID p_dest_panorama , const Size2i & p_panorama_size , float p_lod , bool p_is_array ) {
2021-04-27 16:19:21 +02:00
memset ( & copy . push_constant , 0 , sizeof ( CopyPushConstant ) ) ;
2020-05-01 14:34:23 +02:00
copy . push_constant . section [ 0 ] = 0 ;
copy . push_constant . section [ 1 ] = 0 ;
copy . push_constant . section [ 2 ] = p_panorama_size . width ;
copy . push_constant . section [ 3 ] = p_panorama_size . height ;
copy . push_constant . target [ 0 ] = 0 ;
copy . push_constant . target [ 1 ] = 0 ;
copy . push_constant . camera_z_far = p_lod ;
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , copy . pipelines [ p_is_array ? COPY_MODE_CUBE_ARRAY_TO_PANORAMA : COPY_MODE_CUBE_TO_PANORAMA ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_source_cube ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_dest_panorama ) , 3 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & copy . push_constant , sizeof ( CopyPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_panorama_size . width , p_panorama_size . height , 1 ) ;
2020-05-01 14:34:23 +02:00
RD : : get_singleton ( ) - > compute_list_end ( ) ;
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : copy_depth_to_rect_and_linearize ( RID p_source_rd_texture , RID p_dest_texture , const Rect2i & p_rect , bool p_flip_y , float p_z_near , float p_z_far ) {
2021-04-27 16:19:21 +02:00
memset ( & copy . push_constant , 0 , sizeof ( CopyPushConstant ) ) ;
2020-04-11 19:43:12 +02:00
if ( p_flip_y ) {
copy . push_constant . flags | = COPY_FLAG_FLIP_Y ;
}
copy . push_constant . section [ 0 ] = 0 ;
copy . push_constant . section [ 1 ] = 0 ;
copy . push_constant . section [ 2 ] = p_rect . size . width ;
copy . push_constant . section [ 3 ] = p_rect . size . height ;
copy . push_constant . target [ 0 ] = p_rect . position . x ;
copy . push_constant . target [ 1 ] = p_rect . position . y ;
copy . push_constant . camera_z_far = p_z_far ;
copy . push_constant . camera_z_near = p_z_near ;
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , copy . pipelines [ COPY_MODE_LINEARIZE_DEPTH ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_source_rd_texture ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_dest_texture ) , 3 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & copy . push_constant , sizeof ( CopyPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_rect . size . width , p_rect . size . height , 1 ) ;
2020-04-11 19:43:12 +02:00
RD : : get_singleton ( ) - > compute_list_end ( ) ;
}
2019-07-27 15:23:24 +02:00
2020-12-04 19:26:24 +01:00
void EffectsRD : : copy_depth_to_rect ( RID p_source_rd_texture , RID p_dest_texture , const Rect2i & p_rect , bool p_flip_y ) {
2021-04-27 16:19:21 +02:00
memset ( & copy . push_constant , 0 , sizeof ( CopyPushConstant ) ) ;
2020-04-11 19:43:12 +02:00
if ( p_flip_y ) {
copy . push_constant . flags | = COPY_FLAG_FLIP_Y ;
2019-07-27 15:23:24 +02:00
}
2020-04-11 19:43:12 +02:00
copy . push_constant . section [ 0 ] = 0 ;
copy . push_constant . section [ 1 ] = 0 ;
copy . push_constant . section [ 2 ] = p_rect . size . width ;
copy . push_constant . section [ 3 ] = p_rect . size . height ;
copy . push_constant . target [ 0 ] = p_rect . position . x ;
copy . push_constant . target [ 1 ] = p_rect . position . y ;
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , copy . pipelines [ COPY_MODE_SIMPLY_COPY_DEPTH ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_source_rd_texture ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_dest_texture ) , 3 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & copy . push_constant , sizeof ( CopyPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_rect . size . width , p_rect . size . height , 1 ) ;
2020-04-11 19:43:12 +02:00
RD : : get_singleton ( ) - > compute_list_end ( ) ;
2019-07-27 15:23:24 +02:00
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : set_color ( RID p_dest_texture , const Color & p_color , const Rect2i & p_region , bool p_8bit_dst ) {
2021-04-27 16:19:21 +02:00
memset ( & copy . push_constant , 0 , sizeof ( CopyPushConstant ) ) ;
2020-10-28 19:34:27 +01:00
copy . push_constant . section [ 0 ] = 0 ;
copy . push_constant . section [ 1 ] = 0 ;
copy . push_constant . section [ 2 ] = p_region . size . width ;
copy . push_constant . section [ 3 ] = p_region . size . height ;
copy . push_constant . target [ 0 ] = p_region . position . x ;
copy . push_constant . target [ 1 ] = p_region . position . y ;
copy . push_constant . set_color [ 0 ] = p_color . r ;
copy . push_constant . set_color [ 1 ] = p_color . g ;
copy . push_constant . set_color [ 2 ] = p_color . b ;
copy . push_constant . set_color [ 3 ] = p_color . a ;
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , copy . pipelines [ p_8bit_dst ? COPY_MODE_SET_COLOR_8BIT : COPY_MODE_SET_COLOR ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_dest_texture ) , 3 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & copy . push_constant , sizeof ( CopyPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_region . size . width , p_region . size . height , 1 ) ;
2020-10-28 19:34:27 +01:00
RD : : get_singleton ( ) - > compute_list_end ( ) ;
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : gaussian_blur ( RID p_source_rd_texture , RID p_texture , RID p_back_texture , const Rect2i & p_region , bool p_8bit_dst ) {
2021-07-20 13:40:16 +02:00
ERR_FAIL_COND_MSG ( ! prefer_raster_effects , " Can't use the compute version of the gaussian blur with the mobile renderer. " ) ;
2021-04-27 16:19:21 +02:00
memset ( & copy . push_constant , 0 , sizeof ( CopyPushConstant ) ) ;
2019-07-27 15:23:24 +02:00
uint32_t base_flags = 0 ;
2020-04-11 19:43:12 +02:00
copy . push_constant . section [ 0 ] = p_region . position . x ;
copy . push_constant . section [ 1 ] = p_region . position . y ;
copy . push_constant . section [ 2 ] = p_region . size . width ;
copy . push_constant . section [ 3 ] = p_region . size . height ;
2019-07-27 15:23:24 +02:00
//HORIZONTAL
2020-04-11 19:43:12 +02:00
RD : : DrawListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , copy . pipelines [ p_8bit_dst ? COPY_MODE_GAUSSIAN_COPY_8BIT : COPY_MODE_GAUSSIAN_COPY ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_source_rd_texture ) , 0 ) ;
2020-10-28 19:34:27 +01:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_back_texture ) , 3 ) ;
2019-07-27 15:23:24 +02:00
2020-04-11 19:43:12 +02:00
copy . push_constant . flags = base_flags | COPY_FLAG_HORIZONTAL ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & copy . push_constant , sizeof ( CopyPushConstant ) ) ;
2019-07-27 15:23:24 +02:00
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_region . size . width , p_region . size . height , 1 ) ;
2020-04-11 19:43:12 +02:00
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
2019-07-27 15:23:24 +02:00
//VERTICAL
2020-04-11 19:43:12 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_back_texture ) , 0 ) ;
2020-10-28 19:34:27 +01:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_texture ) , 3 ) ;
2019-07-27 15:23:24 +02:00
2020-04-11 19:43:12 +02:00
copy . push_constant . flags = base_flags ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & copy . push_constant , sizeof ( CopyPushConstant ) ) ;
2019-07-27 15:23:24 +02:00
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_region . size . width , p_region . size . height , 1 ) ;
2020-04-11 19:43:12 +02:00
RD : : get_singleton ( ) - > compute_list_end ( ) ;
2019-07-27 15:23:24 +02:00
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : gaussian_glow ( RID p_source_rd_texture , RID p_back_texture , const Size2i & p_size , float p_strength , bool p_high_quality , bool p_first_pass , float p_luminance_cap , float p_exposure , float p_bloom , float p_hdr_bleed_treshold , float p_hdr_bleed_scale , RID p_auto_exposure , float p_auto_exposure_grey ) {
2021-07-20 13:40:16 +02:00
ERR_FAIL_COND_MSG ( prefer_raster_effects , " Can't use the compute version of the gaussian glow with the mobile renderer. " ) ;
2021-04-27 16:19:21 +02:00
memset ( & copy . push_constant , 0 , sizeof ( CopyPushConstant ) ) ;
2020-01-10 01:40:26 +01:00
2020-04-11 19:43:12 +02:00
CopyMode copy_mode = p_first_pass & & p_auto_exposure . is_valid ( ) ? COPY_MODE_GAUSSIAN_GLOW_AUTO_EXPOSURE : COPY_MODE_GAUSSIAN_GLOW ;
2020-01-10 01:40:26 +01:00
uint32_t base_flags = 0 ;
2020-04-11 19:43:12 +02:00
copy . push_constant . section [ 2 ] = p_size . x ;
copy . push_constant . section [ 3 ] = p_size . y ;
2020-04-02 04:24:52 +02:00
2020-04-11 19:43:12 +02:00
copy . push_constant . glow_strength = p_strength ;
copy . push_constant . glow_bloom = p_bloom ;
copy . push_constant . glow_hdr_threshold = p_hdr_bleed_treshold ;
copy . push_constant . glow_hdr_scale = p_hdr_bleed_scale ;
copy . push_constant . glow_exposure = p_exposure ;
copy . push_constant . glow_white = 0 ; //actually unused
copy . push_constant . glow_luminance_cap = p_luminance_cap ;
copy . push_constant . glow_auto_exposure_grey = p_auto_exposure_grey ; //unused also
2020-01-10 01:40:26 +01:00
2020-04-11 19:43:12 +02:00
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , copy . pipelines [ copy_mode ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_source_rd_texture ) , 0 ) ;
2020-09-20 00:02:32 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_back_texture ) , 3 ) ;
2020-01-10 01:40:26 +01:00
if ( p_auto_exposure . is_valid ( ) & & p_first_pass ) {
2020-04-11 19:43:12 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_auto_exposure ) , 1 ) ;
2020-01-10 01:40:26 +01:00
}
2020-09-20 00:02:32 +02:00
copy . push_constant . flags = base_flags | ( p_first_pass ? COPY_FLAG_GLOW_FIRST_PASS : 0 ) | ( p_high_quality ? COPY_FLAG_HIGH_QUALITY_GLOW : 0 ) ;
2020-04-11 19:43:12 +02:00
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & copy . push_constant , sizeof ( CopyPushConstant ) ) ;
2020-01-10 01:40:26 +01:00
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_size . width , p_size . height , 1 ) ;
2020-04-11 19:43:12 +02:00
RD : : get_singleton ( ) - > compute_list_end ( ) ;
2020-01-10 01:40:26 +01:00
}
2021-07-20 13:40:16 +02:00
void EffectsRD : : gaussian_glow_raster ( RID p_source_rd_texture , RID p_framebuffer_half , RID p_rd_texture_half , RID p_dest_framebuffer , const Vector2 & p_pixel_size , float p_strength , bool p_high_quality , bool p_first_pass , float p_luminance_cap , float p_exposure , float p_bloom , float p_hdr_bleed_treshold , float p_hdr_bleed_scale , RID p_auto_exposure , float p_auto_exposure_grey ) {
2021-07-27 15:33:47 +02:00
ERR_FAIL_COND_MSG ( ! prefer_raster_effects , " Can't use the raster version of the gaussian glow with the clustered renderer. " ) ;
2021-07-20 13:40:16 +02:00
memset ( & blur_raster . push_constant , 0 , sizeof ( BlurRasterPushConstant ) ) ;
BlurRasterMode blur_mode = p_first_pass & & p_auto_exposure . is_valid ( ) ? BLUR_MODE_GAUSSIAN_GLOW_AUTO_EXPOSURE : BLUR_MODE_GAUSSIAN_GLOW ;
uint32_t base_flags = 0 ;
blur_raster . push_constant . pixel_size [ 0 ] = p_pixel_size . x ;
blur_raster . push_constant . pixel_size [ 1 ] = p_pixel_size . y ;
blur_raster . push_constant . glow_strength = p_strength ;
blur_raster . push_constant . glow_bloom = p_bloom ;
blur_raster . push_constant . glow_hdr_threshold = p_hdr_bleed_treshold ;
blur_raster . push_constant . glow_hdr_scale = p_hdr_bleed_scale ;
blur_raster . push_constant . glow_exposure = p_exposure ;
blur_raster . push_constant . glow_white = 0 ; //actually unused
blur_raster . push_constant . glow_luminance_cap = p_luminance_cap ;
blur_raster . push_constant . glow_auto_exposure_grey = p_auto_exposure_grey ; //unused also
//HORIZONTAL
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( p_framebuffer_half , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_DISCARD ) ;
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , blur_raster . pipelines [ blur_mode ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( p_framebuffer_half ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_source_rd_texture ) , 0 ) ;
if ( p_auto_exposure . is_valid ( ) & & p_first_pass ) {
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_auto_exposure ) , 1 ) ;
}
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
blur_raster . push_constant . flags = base_flags | BLUR_FLAG_HORIZONTAL | ( p_first_pass ? BLUR_FLAG_GLOW_FIRST_PASS : 0 ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & blur_raster . push_constant , sizeof ( BlurRasterPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
blur_mode = BLUR_MODE_GAUSSIAN_GLOW ;
//VERTICAL
draw_list = RD : : get_singleton ( ) - > draw_list_begin ( p_dest_framebuffer , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_DISCARD ) ;
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , blur_raster . pipelines [ blur_mode ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( p_dest_framebuffer ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_rd_texture_half ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
blur_raster . push_constant . flags = base_flags ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & blur_raster . push_constant , sizeof ( BlurRasterPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : screen_space_reflection ( RID p_diffuse , RID p_normal_roughness , RenderingServer : : EnvironmentSSRRoughnessQuality p_roughness_quality , RID p_blur_radius , RID p_blur_radius2 , RID p_metallic , const Color & p_metallic_mask , RID p_depth , RID p_scale_depth , RID p_scale_normal , RID p_output , RID p_output_blur , const Size2i & p_screen_size , int p_max_steps , float p_fade_in , float p_fade_out , float p_tolerance , const CameraMatrix & p_camera ) {
2020-04-02 04:24:52 +02:00
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
{ //scale color and depth to half
ssr_scale . push_constant . camera_z_far = p_camera . get_z_far ( ) ;
ssr_scale . push_constant . camera_z_near = p_camera . get_z_near ( ) ;
ssr_scale . push_constant . orthogonal = p_camera . is_orthogonal ( ) ;
ssr_scale . push_constant . filter = false ; //enabling causes arctifacts
ssr_scale . push_constant . screen_size [ 0 ] = p_screen_size . x ;
ssr_scale . push_constant . screen_size [ 1 ] = p_screen_size . y ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , ssr_scale . pipeline ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_diffuse ) , 0 ) ;
2020-06-25 15:33:28 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture_pair ( p_depth , p_normal_roughness ) , 1 ) ;
2020-04-02 04:24:52 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_output_blur ) , 2 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_image_pair ( p_scale_depth , p_scale_normal ) , 3 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & ssr_scale . push_constant , sizeof ( ScreenSpaceReflectionScalePushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_screen_size . width , p_screen_size . height , 1 ) ;
2020-04-02 04:24:52 +02:00
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
}
{
ssr . push_constant . camera_z_far = p_camera . get_z_far ( ) ;
ssr . push_constant . camera_z_near = p_camera . get_z_near ( ) ;
ssr . push_constant . orthogonal = p_camera . is_orthogonal ( ) ;
ssr . push_constant . screen_size [ 0 ] = p_screen_size . x ;
ssr . push_constant . screen_size [ 1 ] = p_screen_size . y ;
ssr . push_constant . curve_fade_in = p_fade_in ;
ssr . push_constant . distance_fade = p_fade_out ;
ssr . push_constant . num_steps = p_max_steps ;
ssr . push_constant . depth_tolerance = p_tolerance ;
ssr . push_constant . use_half_res = true ;
ssr . push_constant . proj_info [ 0 ] = - 2.0f / ( p_screen_size . width * p_camera . matrix [ 0 ] [ 0 ] ) ;
ssr . push_constant . proj_info [ 1 ] = - 2.0f / ( p_screen_size . height * p_camera . matrix [ 1 ] [ 1 ] ) ;
ssr . push_constant . proj_info [ 2 ] = ( 1.0f - p_camera . matrix [ 0 ] [ 2 ] ) / p_camera . matrix [ 0 ] [ 0 ] ;
ssr . push_constant . proj_info [ 3 ] = ( 1.0f + p_camera . matrix [ 1 ] [ 2 ] ) / p_camera . matrix [ 1 ] [ 1 ] ;
ssr . push_constant . metallic_mask [ 0 ] = CLAMP ( p_metallic_mask . r * 255.0 , 0 , 255 ) ;
ssr . push_constant . metallic_mask [ 1 ] = CLAMP ( p_metallic_mask . g * 255.0 , 0 , 255 ) ;
ssr . push_constant . metallic_mask [ 2 ] = CLAMP ( p_metallic_mask . b * 255.0 , 0 , 255 ) ;
ssr . push_constant . metallic_mask [ 3 ] = CLAMP ( p_metallic_mask . a * 255.0 , 0 , 255 ) ;
store_camera ( p_camera , ssr . push_constant . projection ) ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , ssr . pipelines [ ( p_roughness_quality ! = RS : : ENV_SSR_ROUGNESS_QUALITY_DISABLED ) ? SCREEN_SPACE_REFLECTION_ROUGH : SCREEN_SPACE_REFLECTION_NORMAL ] ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & ssr . push_constant , sizeof ( ScreenSpaceReflectionPushConstant ) ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_image_pair ( p_output_blur , p_scale_depth ) , 0 ) ;
if ( p_roughness_quality ! = RS : : ENV_SSR_ROUGNESS_QUALITY_DISABLED ) {
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_image_pair ( p_output , p_blur_radius ) , 1 ) ;
} else {
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_output ) , 1 ) ;
}
2021-07-04 04:32:34 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_metallic ) , 3 ) ;
2020-04-02 04:24:52 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_scale_normal ) , 2 ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_screen_size . width , p_screen_size . height , 1 ) ;
2020-04-02 04:24:52 +02:00
}
if ( p_roughness_quality ! = RS : : ENV_SSR_ROUGNESS_QUALITY_DISABLED ) {
2020-07-16 18:54:15 +02:00
//blur
2020-04-02 04:24:52 +02:00
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
ssr_filter . push_constant . orthogonal = p_camera . is_orthogonal ( ) ;
ssr_filter . push_constant . edge_tolerance = Math : : sin ( Math : : deg2rad ( 15.0 ) ) ;
ssr_filter . push_constant . proj_info [ 0 ] = - 2.0f / ( p_screen_size . width * p_camera . matrix [ 0 ] [ 0 ] ) ;
ssr_filter . push_constant . proj_info [ 1 ] = - 2.0f / ( p_screen_size . height * p_camera . matrix [ 1 ] [ 1 ] ) ;
ssr_filter . push_constant . proj_info [ 2 ] = ( 1.0f - p_camera . matrix [ 0 ] [ 2 ] ) / p_camera . matrix [ 0 ] [ 0 ] ;
ssr_filter . push_constant . proj_info [ 3 ] = ( 1.0f + p_camera . matrix [ 1 ] [ 2 ] ) / p_camera . matrix [ 1 ] [ 1 ] ;
ssr_filter . push_constant . vertical = 0 ;
if ( p_roughness_quality = = RS : : ENV_SSR_ROUGNESS_QUALITY_LOW ) {
ssr_filter . push_constant . steps = p_max_steps / 3 ;
ssr_filter . push_constant . increment = 3 ;
} else if ( p_roughness_quality = = RS : : ENV_SSR_ROUGNESS_QUALITY_MEDIUM ) {
ssr_filter . push_constant . steps = p_max_steps / 2 ;
ssr_filter . push_constant . increment = 2 ;
} else {
ssr_filter . push_constant . steps = p_max_steps ;
ssr_filter . push_constant . increment = 1 ;
}
ssr_filter . push_constant . screen_size [ 0 ] = p_screen_size . width ;
ssr_filter . push_constant . screen_size [ 1 ] = p_screen_size . height ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , ssr_filter . pipelines [ SCREEN_SPACE_REFLECTION_FILTER_HORIZONTAL ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_image_pair ( p_output , p_blur_radius ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_scale_normal ) , 1 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_image_pair ( p_output_blur , p_blur_radius2 ) , 2 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_scale_depth ) , 3 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & ssr_filter . push_constant , sizeof ( ScreenSpaceReflectionFilterPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_screen_size . width , p_screen_size . height , 1 ) ;
2020-04-02 04:24:52 +02:00
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , ssr_filter . pipelines [ SCREEN_SPACE_REFLECTION_FILTER_VERTICAL ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_image_pair ( p_output_blur , p_blur_radius2 ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_scale_normal ) , 1 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_output ) , 2 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_scale_depth ) , 3 ) ;
ssr_filter . push_constant . vertical = 1 ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & ssr_filter . push_constant , sizeof ( ScreenSpaceReflectionFilterPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_screen_size . width , p_screen_size . height , 1 ) ;
2020-04-02 04:24:52 +02:00
}
RD : : get_singleton ( ) - > compute_list_end ( ) ;
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : sub_surface_scattering ( RID p_diffuse , RID p_diffuse2 , RID p_depth , const CameraMatrix & p_camera , const Size2i & p_screen_size , float p_scale , float p_depth_scale , RenderingServer : : SubSurfaceScatteringQuality p_quality ) {
2020-04-04 04:42:26 +02:00
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
Plane p = p_camera . xform4 ( Plane ( 1 , 0 , - 1 , 1 ) ) ;
2020-05-10 16:47:11 +02:00
p . normal / = p . d ;
2020-04-04 04:42:26 +02:00
float unit_size = p . normal . x ;
{ //scale color and depth to half
sss . push_constant . camera_z_far = p_camera . get_z_far ( ) ;
sss . push_constant . camera_z_near = p_camera . get_z_near ( ) ;
sss . push_constant . orthogonal = p_camera . is_orthogonal ( ) ;
sss . push_constant . unit_size = unit_size ;
sss . push_constant . screen_size [ 0 ] = p_screen_size . x ;
sss . push_constant . screen_size [ 1 ] = p_screen_size . y ;
sss . push_constant . vertical = false ;
sss . push_constant . scale = p_scale ;
sss . push_constant . depth_scale = p_depth_scale ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , sss . pipelines [ p_quality - 1 ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_diffuse ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_diffuse2 ) , 1 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_depth ) , 2 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & sss . push_constant , sizeof ( SubSurfaceScatteringPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_screen_size . width , p_screen_size . height , 1 ) ;
2020-04-04 04:42:26 +02:00
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_diffuse2 ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_diffuse ) , 1 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_depth ) , 2 ) ;
sss . push_constant . vertical = true ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & sss . push_constant , sizeof ( SubSurfaceScatteringPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_screen_size . width , p_screen_size . height , 1 ) ;
2020-04-04 04:42:26 +02:00
RD : : get_singleton ( ) - > compute_list_end ( ) ;
}
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : merge_specular ( RID p_dest_framebuffer , RID p_specular , RID p_base , RID p_reflection ) {
2020-04-02 04:24:52 +02:00
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( p_dest_framebuffer , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_DISCARD , Vector < Color > ( ) ) ;
if ( p_reflection . is_valid ( ) ) {
if ( p_base . is_valid ( ) ) {
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , specular_merge . pipelines [ SPECULAR_MERGE_SSR ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( p_dest_framebuffer ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_base ) , 2 ) ;
} else {
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , specular_merge . pipelines [ SPECULAR_MERGE_ADDITIVE_SSR ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( p_dest_framebuffer ) ) ) ;
}
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_specular ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_reflection ) , 1 ) ;
} else {
if ( p_base . is_valid ( ) ) {
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , specular_merge . pipelines [ SPECULAR_MERGE_ADD ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( p_dest_framebuffer ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_base ) , 2 ) ;
} else {
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , specular_merge . pipelines [ SPECULAR_MERGE_ADDITIVE_ADD ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( p_dest_framebuffer ) ) ) ;
}
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_specular ) , 0 ) ;
}
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : make_mipmap ( RID p_source_rd_texture , RID p_dest_texture , const Size2i & p_size ) {
2021-04-27 16:19:21 +02:00
memset ( & copy . push_constant , 0 , sizeof ( CopyPushConstant ) ) ;
2019-07-27 15:23:24 +02:00
2020-04-11 19:43:12 +02:00
copy . push_constant . section [ 0 ] = 0 ;
copy . push_constant . section [ 1 ] = 0 ;
copy . push_constant . section [ 2 ] = p_size . width ;
copy . push_constant . section [ 3 ] = p_size . height ;
2019-08-26 22:43:58 +02:00
2020-04-11 19:43:12 +02:00
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , copy . pipelines [ COPY_MODE_MIPMAP ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_source_rd_texture ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_dest_texture ) , 3 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & copy . push_constant , sizeof ( CopyPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_size . width , p_size . height , 1 ) ;
2020-04-11 19:43:12 +02:00
RD : : get_singleton ( ) - > compute_list_end ( ) ;
2019-08-26 22:43:58 +02:00
}
2021-08-11 13:00:12 +02:00
void EffectsRD : : make_mipmap_raster ( RID p_source_rd_texture , RID p_dest_framebuffer , const Size2i & p_size ) {
ERR_FAIL_COND_MSG ( ! prefer_raster_effects , " Can't use the raster version of mipmap with the clustered renderer. " ) ;
memset ( & blur_raster . push_constant , 0 , sizeof ( BlurRasterPushConstant ) ) ;
BlurRasterMode mode = BLUR_MIPMAP ;
blur_raster . push_constant . pixel_size [ 0 ] = 1.0 / float ( p_size . x ) ;
blur_raster . push_constant . pixel_size [ 1 ] = 1.0 / float ( p_size . y ) ;
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( p_dest_framebuffer , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_DISCARD ) ;
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , blur_raster . pipelines [ mode ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( p_dest_framebuffer ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_source_rd_texture ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & blur_raster . push_constant , sizeof ( BlurRasterPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
}
2021-01-24 20:00:20 +01:00
void EffectsRD : : copy_cubemap_to_dp ( RID p_source_rd_texture , RID p_dst_framebuffer , const Rect2 & p_rect , float p_z_near , float p_z_far , bool p_dp_flip ) {
2019-09-07 03:51:27 +02:00
CopyToDPPushConstant push_constant ;
2021-01-24 20:00:20 +01:00
push_constant . screen_rect [ 0 ] = p_rect . position . x ;
push_constant . screen_rect [ 1 ] = p_rect . position . y ;
push_constant . screen_rect [ 2 ] = p_rect . size . width ;
push_constant . screen_rect [ 3 ] = p_rect . size . height ;
2019-09-07 03:51:27 +02:00
push_constant . z_far = p_z_far ;
push_constant . z_near = p_z_near ;
push_constant . z_flip = p_dp_flip ;
2021-01-24 20:00:20 +01:00
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( p_dst_framebuffer , RD : : INITIAL_ACTION_DROP , RD : : FINAL_ACTION_DISCARD , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ ) ;
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , cube_to_dp . pipeline . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( p_dst_framebuffer ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_source_rd_texture ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
2020-04-11 19:43:12 +02:00
2021-01-24 20:00:20 +01:00
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & push_constant , sizeof ( CopyToDPPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > draw_list_end ( RD : : BARRIER_MASK_RASTER | RD : : BARRIER_MASK_TRANSFER ) ;
2019-09-07 03:51:27 +02:00
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : tonemapper ( RID p_source_color , RID p_dst_framebuffer , const TonemapSettings & p_settings ) {
2021-04-27 16:19:21 +02:00
memset ( & tonemap . push_constant , 0 , sizeof ( TonemapPushConstant ) ) ;
2019-08-27 20:27:35 +02:00
tonemap . push_constant . use_bcs = p_settings . use_bcs ;
tonemap . push_constant . bcs [ 0 ] = p_settings . brightness ;
tonemap . push_constant . bcs [ 1 ] = p_settings . contrast ;
tonemap . push_constant . bcs [ 2 ] = p_settings . saturation ;
tonemap . push_constant . use_glow = p_settings . use_glow ;
tonemap . push_constant . glow_intensity = p_settings . glow_intensity ;
2020-09-20 00:02:32 +02:00
tonemap . push_constant . glow_levels [ 0 ] = p_settings . glow_levels [ 0 ] ; // clean this up to just pass by pointer or something
tonemap . push_constant . glow_levels [ 1 ] = p_settings . glow_levels [ 1 ] ;
tonemap . push_constant . glow_levels [ 2 ] = p_settings . glow_levels [ 2 ] ;
tonemap . push_constant . glow_levels [ 3 ] = p_settings . glow_levels [ 3 ] ;
tonemap . push_constant . glow_levels [ 4 ] = p_settings . glow_levels [ 4 ] ;
tonemap . push_constant . glow_levels [ 5 ] = p_settings . glow_levels [ 5 ] ;
tonemap . push_constant . glow_levels [ 6 ] = p_settings . glow_levels [ 6 ] ;
2019-08-27 20:27:35 +02:00
tonemap . push_constant . glow_texture_size [ 0 ] = p_settings . glow_texture_size . x ;
tonemap . push_constant . glow_texture_size [ 1 ] = p_settings . glow_texture_size . y ;
2020-01-10 01:40:26 +01:00
tonemap . push_constant . glow_mode = p_settings . glow_mode ;
2019-08-27 20:27:35 +02:00
2020-11-23 02:51:31 +01:00
int mode = p_settings . glow_use_bicubic_upscale ? TONEMAP_MODE_BICUBIC_GLOW_FILTER : TONEMAP_MODE_NORMAL ;
if ( p_settings . use_1d_color_correction ) {
mode + = 2 ;
}
2019-08-27 20:27:35 +02:00
tonemap . push_constant . tonemapper = p_settings . tonemap_mode ;
tonemap . push_constant . use_auto_exposure = p_settings . use_auto_exposure ;
tonemap . push_constant . exposure = p_settings . exposure ;
tonemap . push_constant . white = p_settings . white ;
tonemap . push_constant . auto_exposure_grey = p_settings . auto_exposure_grey ;
tonemap . push_constant . use_color_correction = p_settings . use_color_correction ;
2020-04-12 06:49:10 +02:00
tonemap . push_constant . use_fxaa = p_settings . use_fxaa ;
2020-04-20 23:34:47 +02:00
tonemap . push_constant . use_debanding = p_settings . use_debanding ;
2020-04-12 06:49:10 +02:00
tonemap . push_constant . pixel_size [ 0 ] = 1.0 / p_settings . texture_size . x ;
tonemap . push_constant . pixel_size [ 1 ] = 1.0 / p_settings . texture_size . y ;
2021-05-07 15:19:04 +02:00
if ( p_settings . view_count > 1 ) {
// Use MULTIVIEW versions
2021-06-26 12:49:25 +02:00
mode + = 6 ;
2021-05-07 15:19:04 +02:00
}
2020-04-11 19:43:12 +02:00
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( p_dst_framebuffer , RD : : INITIAL_ACTION_DROP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_DROP , RD : : FINAL_ACTION_DISCARD ) ;
2021-06-26 12:49:25 +02:00
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , tonemap . pipelines [ mode ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( p_dst_framebuffer ) , false , RD : : get_singleton ( ) - > draw_list_get_current_pass ( ) ) ) ;
2019-08-27 20:27:35 +02:00
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_source_color ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_settings . exposure_texture ) , 1 ) ;
2020-01-10 01:40:26 +01:00
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_settings . glow_texture , true ) , 2 ) ;
2019-08-27 20:27:35 +02:00
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_settings . color_correction_texture ) , 3 ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & tonemap . push_constant , sizeof ( TonemapPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
}
2021-06-26 12:49:25 +02:00
void EffectsRD : : tonemapper ( RD : : DrawListID p_subpass_draw_list , RID p_source_color , RD : : FramebufferFormatID p_dst_format_id , const TonemapSettings & p_settings ) {
memset ( & tonemap . push_constant , 0 , sizeof ( TonemapPushConstant ) ) ;
tonemap . push_constant . use_bcs = p_settings . use_bcs ;
tonemap . push_constant . bcs [ 0 ] = p_settings . brightness ;
tonemap . push_constant . bcs [ 1 ] = p_settings . contrast ;
tonemap . push_constant . bcs [ 2 ] = p_settings . saturation ;
ERR_FAIL_COND_MSG ( p_settings . use_glow , " Glow is not supported when using subpasses. " ) ;
tonemap . push_constant . use_glow = p_settings . use_glow ;
int mode = p_settings . use_1d_color_correction ? TONEMAP_MODE_SUBPASS_1D_LUT : TONEMAP_MODE_SUBPASS ;
if ( p_settings . view_count > 1 ) {
// Use MULTIVIEW versions
mode + = 6 ;
}
tonemap . push_constant . tonemapper = p_settings . tonemap_mode ;
tonemap . push_constant . use_auto_exposure = p_settings . use_auto_exposure ;
tonemap . push_constant . exposure = p_settings . exposure ;
tonemap . push_constant . white = p_settings . white ;
tonemap . push_constant . auto_exposure_grey = p_settings . auto_exposure_grey ;
tonemap . push_constant . use_color_correction = p_settings . use_color_correction ;
tonemap . push_constant . use_debanding = p_settings . use_debanding ;
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( p_subpass_draw_list , tonemap . pipelines [ mode ] . get_render_pipeline ( RD : : INVALID_ID , p_dst_format_id , false , RD : : get_singleton ( ) - > draw_list_get_current_pass ( ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( p_subpass_draw_list , _get_uniform_set_for_input ( p_source_color ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( p_subpass_draw_list , _get_uniform_set_from_texture ( p_settings . exposure_texture ) , 1 ) ; // should be set to a default texture, it's ignored
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( p_subpass_draw_list , _get_uniform_set_from_texture ( p_settings . glow_texture , true ) , 2 ) ; // should be set to a default texture, it's ignored
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( p_subpass_draw_list , _get_uniform_set_from_texture ( p_settings . color_correction_texture ) , 3 ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( p_subpass_draw_list , index_array ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( p_subpass_draw_list , & tonemap . push_constant , sizeof ( TonemapPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( p_subpass_draw_list , true ) ;
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : luminance_reduction ( RID p_source_texture , const Size2i p_source_size , const Vector < RID > p_reduce , RID p_prev_luminance , float p_min_luminance , float p_max_luminance , float p_adjust , bool p_set ) {
2021-07-20 13:40:16 +02:00
ERR_FAIL_COND_MSG ( prefer_raster_effects , " Can't use compute version of luminance reduction with the mobile renderer. " ) ;
2020-01-12 02:26:52 +01:00
luminance_reduce . push_constant . source_size [ 0 ] = p_source_size . x ;
luminance_reduce . push_constant . source_size [ 1 ] = p_source_size . y ;
luminance_reduce . push_constant . max_luminance = p_max_luminance ;
luminance_reduce . push_constant . min_luminance = p_min_luminance ;
luminance_reduce . push_constant . exposure_adjust = p_adjust ;
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
for ( int i = 0 ; i < p_reduce . size ( ) ; i + + ) {
if ( i = = 0 ) {
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , luminance_reduce . pipelines [ LUMINANCE_REDUCE_READ ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_source_texture ) , 0 ) ;
} else {
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ; //needs barrier, wait until previous is done
if ( i = = p_reduce . size ( ) - 1 & & ! p_set ) {
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , luminance_reduce . pipelines [ LUMINANCE_REDUCE_WRITE ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_prev_luminance ) , 2 ) ;
} else {
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , luminance_reduce . pipelines [ LUMINANCE_REDUCE ] ) ;
}
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_reduce [ i - 1 ] ) , 0 ) ;
}
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_reduce [ i ] ) , 1 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & luminance_reduce . push_constant , sizeof ( LuminanceReducePushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , luminance_reduce . push_constant . source_size [ 0 ] , luminance_reduce . push_constant . source_size [ 1 ] , 1 ) ;
2020-01-12 02:26:52 +01:00
luminance_reduce . push_constant . source_size [ 0 ] = MAX ( luminance_reduce . push_constant . source_size [ 0 ] / 8 , 1 ) ;
luminance_reduce . push_constant . source_size [ 1 ] = MAX ( luminance_reduce . push_constant . source_size [ 1 ] / 8 , 1 ) ;
}
RD : : get_singleton ( ) - > compute_list_end ( ) ;
}
2021-07-20 13:40:16 +02:00
void EffectsRD : : luminance_reduction_raster ( RID p_source_texture , const Size2i p_source_size , const Vector < RID > p_reduce , Vector < RID > p_fb , RID p_prev_luminance , float p_min_luminance , float p_max_luminance , float p_adjust , bool p_set ) {
2021-07-27 15:33:47 +02:00
ERR_FAIL_COND_MSG ( ! prefer_raster_effects , " Can't use raster version of luminance reduction with the clustered renderer. " ) ;
2021-07-20 13:40:16 +02:00
ERR_FAIL_COND_MSG ( p_reduce . size ( ) ! = p_fb . size ( ) , " Incorrect frame buffer account for luminance reduction. " ) ;
luminance_reduce_raster . push_constant . max_luminance = p_max_luminance ;
luminance_reduce_raster . push_constant . min_luminance = p_min_luminance ;
luminance_reduce_raster . push_constant . exposure_adjust = p_adjust ;
for ( int i = 0 ; i < p_reduce . size ( ) ; i + + ) {
luminance_reduce_raster . push_constant . source_size [ 0 ] = i = = 0 ? p_source_size . x : luminance_reduce_raster . push_constant . dest_size [ 0 ] ;
luminance_reduce_raster . push_constant . source_size [ 1 ] = i = = 0 ? p_source_size . y : luminance_reduce_raster . push_constant . dest_size [ 1 ] ;
luminance_reduce_raster . push_constant . dest_size [ 0 ] = MAX ( luminance_reduce_raster . push_constant . source_size [ 0 ] / 8 , 1 ) ;
luminance_reduce_raster . push_constant . dest_size [ 1 ] = MAX ( luminance_reduce_raster . push_constant . source_size [ 1 ] / 8 , 1 ) ;
bool final = ! p_set & & ( luminance_reduce_raster . push_constant . dest_size [ 0 ] = = 1 ) & & ( luminance_reduce_raster . push_constant . dest_size [ 1 ] = = 1 ) ;
LuminanceReduceRasterMode mode = final ? LUMINANCE_REDUCE_FRAGMENT_FINAL : ( i = = 0 ? LUMINANCE_REDUCE_FRAGMENT_FIRST : LUMINANCE_REDUCE_FRAGMENT ) ;
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( p_fb [ i ] , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_DISCARD ) ;
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , luminance_reduce_raster . pipelines [ mode ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( p_fb [ i ] ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( i = = 0 ? p_source_texture : p_reduce [ i - 1 ] ) , 0 ) ;
if ( final ) {
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_prev_luminance ) , 1 ) ;
}
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & luminance_reduce_raster . push_constant , sizeof ( LuminanceReduceRasterPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
}
}
2021-07-29 09:43:17 +02:00
void EffectsRD : : bokeh_dof ( const BokehBuffers & p_buffers , bool p_dof_far , float p_dof_far_begin , float p_dof_far_size , bool p_dof_near , float p_dof_near_begin , float p_dof_near_size , float p_bokeh_size , RenderingServer : : DOFBokehShape p_bokeh_shape , RS : : DOFBlurQuality p_quality , bool p_use_jitter , float p_cam_znear , float p_cam_zfar , bool p_cam_orthogonal ) {
2021-07-20 13:40:16 +02:00
ERR_FAIL_COND_MSG ( prefer_raster_effects , " Can't use compute version of BOKEH DOF with the mobile renderer. " ) ;
2020-01-13 19:37:24 +01:00
bokeh . push_constant . blur_far_active = p_dof_far ;
bokeh . push_constant . blur_far_begin = p_dof_far_begin ;
bokeh . push_constant . blur_far_end = p_dof_far_begin + p_dof_far_size ;
bokeh . push_constant . blur_near_active = p_dof_near ;
bokeh . push_constant . blur_near_begin = p_dof_near_begin ;
bokeh . push_constant . blur_near_end = MAX ( 0 , p_dof_near_begin - p_dof_near_size ) ;
2020-01-16 01:23:21 +01:00
bokeh . push_constant . use_jitter = p_use_jitter ;
bokeh . push_constant . jitter_seed = Math : : randf ( ) * 1000.0 ;
2020-01-13 19:37:24 +01:00
bokeh . push_constant . z_near = p_cam_znear ;
bokeh . push_constant . z_far = p_cam_zfar ;
bokeh . push_constant . orthogonal = p_cam_orthogonal ;
bokeh . push_constant . blur_size = p_bokeh_size ;
2020-01-16 01:23:21 +01:00
bokeh . push_constant . second_pass = false ;
bokeh . push_constant . half_size = false ;
2020-01-13 19:37:24 +01:00
bokeh . push_constant . blur_scale = 0.5 ;
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
2020-01-16 01:23:21 +01:00
/* FIRST PASS */
// The alpha channel of the source color texture is filled with the expected circle size
// If used for DOF far, the size is positive, if used for near, its negative.
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , bokeh . compute_pipelines [ BOKEH_GEN_BLUR_SIZE ] ) ;
2020-01-13 19:37:24 +01:00
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_buffers . base_texture ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_buffers . depth_texture ) , 1 ) ;
2020-01-13 19:37:24 +01:00
2021-07-29 09:43:17 +02:00
bokeh . push_constant . size [ 0 ] = p_buffers . base_texture_size . x ;
bokeh . push_constant . size [ 1 ] = p_buffers . base_texture_size . y ;
2020-01-13 22:36:12 +01:00
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & bokeh . push_constant , sizeof ( BokehPushConstant ) ) ;
2020-01-13 19:37:24 +01:00
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_buffers . base_texture_size . x , p_buffers . base_texture_size . y , 1 ) ;
2020-01-13 19:37:24 +01:00
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
2020-03-27 19:21:27 +01:00
if ( p_bokeh_shape = = RS : : DOF_BOKEH_BOX | | p_bokeh_shape = = RS : : DOF_BOKEH_HEXAGON ) {
2020-01-16 01:23:21 +01:00
//second pass
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , bokeh . compute_pipelines [ p_bokeh_shape = = RS : : DOF_BOKEH_BOX ? BOKEH_GEN_BOKEH_BOX : BOKEH_GEN_BOKEH_HEXAGONAL ] ) ;
2020-01-13 19:37:24 +01:00
2020-01-16 01:23:21 +01:00
static const int quality_samples [ 4 ] = { 6 , 12 , 12 , 24 } ;
2020-01-13 22:36:12 +01:00
2020-01-16 01:23:21 +01:00
bokeh . push_constant . steps = quality_samples [ p_quality ] ;
2020-01-13 19:37:24 +01:00
2020-03-27 19:21:27 +01:00
if ( p_quality = = RS : : DOF_BLUR_QUALITY_VERY_LOW | | p_quality = = RS : : DOF_BLUR_QUALITY_LOW ) {
2020-01-16 01:23:21 +01:00
//box and hexagon are more or less the same, and they can work in either half (very low and low quality) or full (medium and high quality_ sizes)
2020-01-13 19:37:24 +01:00
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_buffers . half_texture [ 0 ] ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_buffers . base_texture ) , 1 ) ;
2020-01-13 19:37:24 +01:00
2021-07-29 09:43:17 +02:00
bokeh . push_constant . size [ 0 ] = p_buffers . base_texture_size . x > > 1 ;
bokeh . push_constant . size [ 1 ] = p_buffers . base_texture_size . y > > 1 ;
2020-01-16 01:23:21 +01:00
bokeh . push_constant . half_size = true ;
bokeh . push_constant . blur_size * = 0.5 ;
2020-01-13 19:37:24 +01:00
2020-01-16 01:23:21 +01:00
} else {
//medium and high quality use full size
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_buffers . secondary_texture ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_buffers . base_texture ) , 1 ) ;
2020-01-16 01:23:21 +01:00
}
2020-01-13 22:36:12 +01:00
2020-01-16 01:23:21 +01:00
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & bokeh . push_constant , sizeof ( BokehPushConstant ) ) ;
2020-01-13 19:37:24 +01:00
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , bokeh . push_constant . size [ 0 ] , bokeh . push_constant . size [ 1 ] , 1 ) ;
2020-01-16 01:23:21 +01:00
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
//third pass
bokeh . push_constant . second_pass = true ;
2020-03-27 19:21:27 +01:00
if ( p_quality = = RS : : DOF_BLUR_QUALITY_VERY_LOW | | p_quality = = RS : : DOF_BLUR_QUALITY_LOW ) {
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_buffers . half_texture [ 1 ] ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_buffers . half_texture [ 0 ] ) , 1 ) ;
2020-01-16 01:23:21 +01:00
} else {
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_buffers . base_texture ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_buffers . secondary_texture ) , 1 ) ;
2020-01-16 01:23:21 +01:00
}
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & bokeh . push_constant , sizeof ( BokehPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , bokeh . push_constant . size [ 0 ] , bokeh . push_constant . size [ 1 ] , 1 ) ;
2020-01-16 01:23:21 +01:00
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
2020-03-27 19:21:27 +01:00
if ( p_quality = = RS : : DOF_BLUR_QUALITY_VERY_LOW | | p_quality = = RS : : DOF_BLUR_QUALITY_LOW ) {
2020-01-16 01:23:21 +01:00
//forth pass, upscale for low quality
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , bokeh . compute_pipelines [ BOKEH_COMPOSITE ] ) ;
2020-01-16 01:23:21 +01:00
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_buffers . base_texture ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_buffers . half_texture [ 1 ] ) , 1 ) ;
2020-01-16 01:23:21 +01:00
2021-07-29 09:43:17 +02:00
bokeh . push_constant . size [ 0 ] = p_buffers . base_texture_size . x ;
bokeh . push_constant . size [ 1 ] = p_buffers . base_texture_size . y ;
2020-01-16 01:23:21 +01:00
bokeh . push_constant . half_size = false ;
bokeh . push_constant . second_pass = false ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & bokeh . push_constant , sizeof ( BokehPushConstant ) ) ;
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_buffers . base_texture_size . x , p_buffers . base_texture_size . y , 1 ) ;
2020-01-16 01:23:21 +01:00
}
} else {
//circle
//second pass
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , bokeh . compute_pipelines [ BOKEH_GEN_BOKEH_CIRCULAR ] ) ;
2020-01-16 01:23:21 +01:00
static const float quality_scale [ 4 ] = { 8.0 , 4.0 , 1.0 , 0.5 } ;
bokeh . push_constant . steps = 0 ;
bokeh . push_constant . blur_scale = quality_scale [ p_quality ] ;
//circle always runs in half size, otherwise too expensive
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_buffers . half_texture [ 0 ] ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_buffers . base_texture ) , 1 ) ;
2020-01-16 01:23:21 +01:00
2021-07-29 09:43:17 +02:00
bokeh . push_constant . size [ 0 ] = p_buffers . base_texture_size . x > > 1 ;
bokeh . push_constant . size [ 1 ] = p_buffers . base_texture_size . y > > 1 ;
2020-01-16 01:23:21 +01:00
bokeh . push_constant . half_size = true ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & bokeh . push_constant , sizeof ( BokehPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , bokeh . push_constant . size [ 0 ] , bokeh . push_constant . size [ 1 ] , 1 ) ;
2020-01-16 01:23:21 +01:00
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
//circle is just one pass, then upscale
// upscale
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , bokeh . compute_pipelines [ BOKEH_COMPOSITE ] ) ;
2020-01-16 01:23:21 +01:00
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_buffers . base_texture ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_buffers . half_texture [ 0 ] ) , 1 ) ;
2020-01-16 01:23:21 +01:00
2021-07-29 09:43:17 +02:00
bokeh . push_constant . size [ 0 ] = p_buffers . base_texture_size . x ;
bokeh . push_constant . size [ 1 ] = p_buffers . base_texture_size . y ;
2020-01-16 01:23:21 +01:00
bokeh . push_constant . half_size = false ;
bokeh . push_constant . second_pass = false ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & bokeh . push_constant , sizeof ( BokehPushConstant ) ) ;
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_buffers . base_texture_size . x , p_buffers . base_texture_size . y , 1 ) ;
2020-01-16 01:23:21 +01:00
}
2020-01-13 19:37:24 +01:00
RD : : get_singleton ( ) - > compute_list_end ( ) ;
}
2021-07-29 09:43:17 +02:00
void EffectsRD : : bokeh_dof_raster ( const BokehBuffers & p_buffers , bool p_dof_far , float p_dof_far_begin , float p_dof_far_size , bool p_dof_near , float p_dof_near_begin , float p_dof_near_size , float p_dof_blur_amount , RenderingServer : : DOFBokehShape p_bokeh_shape , RS : : DOFBlurQuality p_quality , float p_cam_znear , float p_cam_zfar , bool p_cam_orthogonal ) {
2021-07-20 13:40:16 +02:00
ERR_FAIL_COND_MSG ( ! prefer_raster_effects , " Can't use blur DOF with the clustered renderer. " ) ;
2021-07-29 09:43:17 +02:00
memset ( & bokeh . push_constant , 0 , sizeof ( BokehPushConstant ) ) ;
2021-07-20 13:40:16 +02:00
2021-07-29 09:43:17 +02:00
bokeh . push_constant . orthogonal = p_cam_orthogonal ;
bokeh . push_constant . size [ 0 ] = p_buffers . base_texture_size . width ;
bokeh . push_constant . size [ 1 ] = p_buffers . base_texture_size . height ;
bokeh . push_constant . z_far = p_cam_zfar ;
bokeh . push_constant . z_near = p_cam_znear ;
2021-07-20 13:40:16 +02:00
2021-07-29 09:43:17 +02:00
bokeh . push_constant . second_pass = false ;
bokeh . push_constant . half_size = false ;
bokeh . push_constant . blur_size = p_dof_blur_amount ;
2021-07-20 13:40:16 +02:00
if ( p_dof_far | | p_dof_near ) {
if ( p_dof_far ) {
2021-07-29 09:43:17 +02:00
bokeh . push_constant . blur_far_active = true ;
bokeh . push_constant . blur_far_begin = p_dof_far_begin ;
bokeh . push_constant . blur_far_end = p_dof_far_begin + p_dof_far_size ;
2021-07-20 13:40:16 +02:00
}
if ( p_dof_near ) {
2021-07-29 09:43:17 +02:00
bokeh . push_constant . blur_near_active = true ;
bokeh . push_constant . blur_near_begin = p_dof_near_begin ;
bokeh . push_constant . blur_near_end = p_dof_near_begin - p_dof_near_size ;
2021-07-20 13:40:16 +02:00
}
2021-07-29 09:43:17 +02:00
{
// generate our depth data
RID framebuffer = p_buffers . base_weight_fb ;
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( framebuffer , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_DISCARD ) ;
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , bokeh . raster_pipelines [ BOKEH_GEN_BLUR_SIZE ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( framebuffer ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_buffers . depth_texture ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
2021-07-20 13:40:16 +02:00
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & bokeh . push_constant , sizeof ( BokehPushConstant ) ) ;
2021-07-20 13:40:16 +02:00
2021-07-29 09:43:17 +02:00
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
}
2021-07-20 13:40:16 +02:00
2021-07-29 09:43:17 +02:00
if ( p_bokeh_shape = = RS : : DOF_BOKEH_BOX | | p_bokeh_shape = = RS : : DOF_BOKEH_HEXAGON ) {
// double pass approach
BokehMode mode = p_bokeh_shape = = RS : : DOF_BOKEH_BOX ? BOKEH_GEN_BOKEH_BOX : BOKEH_GEN_BOKEH_HEXAGONAL ;
2021-07-20 13:40:16 +02:00
2021-07-29 09:43:17 +02:00
if ( p_quality = = RS : : DOF_BLUR_QUALITY_VERY_LOW | | p_quality = = RS : : DOF_BLUR_QUALITY_LOW ) {
//box and hexagon are more or less the same, and they can work in either half (very low and low quality) or full (medium and high quality_ sizes)
bokeh . push_constant . size [ 0 ] = p_buffers . base_texture_size . x > > 1 ;
bokeh . push_constant . size [ 1 ] = p_buffers . base_texture_size . y > > 1 ;
bokeh . push_constant . half_size = true ;
bokeh . push_constant . blur_size * = 0.5 ;
}
2021-07-20 13:40:16 +02:00
2021-07-29 09:43:17 +02:00
static const int quality_samples [ 4 ] = { 6 , 12 , 12 , 24 } ;
bokeh . push_constant . blur_scale = 0.5 ;
bokeh . push_constant . steps = quality_samples [ p_quality ] ;
2021-07-20 13:40:16 +02:00
2021-07-29 09:43:17 +02:00
RID framebuffer = bokeh . push_constant . half_size ? p_buffers . half_fb [ 0 ] : p_buffers . secondary_fb ;
2021-07-20 13:40:16 +02:00
2021-07-29 09:43:17 +02:00
// Pass 1
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( framebuffer , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_DISCARD ) ;
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , bokeh . raster_pipelines [ mode ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( framebuffer ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_buffers . base_texture ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_buffers . weight_texture [ 0 ] ) , 1 ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & bokeh . push_constant , sizeof ( BokehPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
// Pass 2
if ( ! bokeh . push_constant . half_size ) {
// do not output weight, we're writing back into our base buffer
mode = p_bokeh_shape = = RS : : DOF_BOKEH_BOX ? BOKEH_GEN_BOKEH_BOX_NOWEIGHT : BOKEH_GEN_BOKEH_HEXAGONAL_NOWEIGHT ;
}
bokeh . push_constant . second_pass = true ;
framebuffer = bokeh . push_constant . half_size ? p_buffers . half_fb [ 1 ] : p_buffers . base_fb ;
RID texture = bokeh . push_constant . half_size ? p_buffers . half_texture [ 0 ] : p_buffers . secondary_texture ;
RID weight = bokeh . push_constant . half_size ? p_buffers . weight_texture [ 2 ] : p_buffers . weight_texture [ 1 ] ;
draw_list = RD : : get_singleton ( ) - > draw_list_begin ( framebuffer , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_DISCARD ) ;
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , bokeh . raster_pipelines [ mode ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( framebuffer ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( texture ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( weight ) , 1 ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & bokeh . push_constant , sizeof ( BokehPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
if ( bokeh . push_constant . half_size ) {
// Compose pass
mode = BOKEH_COMPOSITE ;
framebuffer = p_buffers . base_fb ;
draw_list = RD : : get_singleton ( ) - > draw_list_begin ( framebuffer , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_DISCARD ) ;
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , bokeh . raster_pipelines [ mode ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( framebuffer ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_buffers . half_texture [ 1 ] ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_buffers . weight_texture [ 3 ] ) , 1 ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_buffers . weight_texture [ 0 ] ) , 2 ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & bokeh . push_constant , sizeof ( BokehPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
}
} else {
// circular is a single pass approach
BokehMode mode = BOKEH_GEN_BOKEH_CIRCULAR ;
{
// circle always runs in half size, otherwise too expensive (though the code below does support making this optional)
bokeh . push_constant . size [ 0 ] = p_buffers . base_texture_size . x > > 1 ;
bokeh . push_constant . size [ 1 ] = p_buffers . base_texture_size . y > > 1 ;
bokeh . push_constant . half_size = true ;
// bokeh.push_constant.blur_size *= 0.5;
}
static const float quality_scale [ 4 ] = { 8.0 , 4.0 , 1.0 , 0.5 } ;
bokeh . push_constant . blur_scale = quality_scale [ p_quality ] ;
bokeh . push_constant . steps = 0.0 ;
RID framebuffer = bokeh . push_constant . half_size ? p_buffers . half_fb [ 0 ] : p_buffers . secondary_fb ;
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( framebuffer , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_DISCARD ) ;
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , bokeh . raster_pipelines [ mode ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( framebuffer ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_buffers . base_texture ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_buffers . weight_texture [ 0 ] ) , 1 ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & bokeh . push_constant , sizeof ( BokehPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
if ( bokeh . push_constant . half_size ) {
// Compose
mode = BOKEH_COMPOSITE ;
framebuffer = p_buffers . base_fb ;
draw_list = RD : : get_singleton ( ) - > draw_list_begin ( framebuffer , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_DISCARD ) ;
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , bokeh . raster_pipelines [ mode ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( framebuffer ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_buffers . half_texture [ 0 ] ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_buffers . weight_texture [ 2 ] ) , 1 ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_buffers . weight_texture [ 0 ] ) , 2 ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & bokeh . push_constant , sizeof ( BokehPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
} else {
// Just copy it back (we use our blur raster shader here)..
draw_list = RD : : get_singleton ( ) - > draw_list_begin ( p_buffers . base_fb , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_DISCARD ) ;
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , blur_raster . pipelines [ BLUR_MODE_COPY ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( p_buffers . base_fb ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_buffers . secondary_texture ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
memset ( & blur_raster . push_constant , 0 , sizeof ( BlurRasterPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & blur_raster . push_constant , sizeof ( BlurRasterPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
}
}
2021-07-20 13:40:16 +02:00
}
}
2021-06-13 19:42:10 +02:00
void EffectsRD : : gather_ssao ( RD : : ComputeListID p_compute_list , const Vector < RID > p_ao_slices , const SSAOSettings & p_settings , bool p_adaptive_base_pass , RID p_gather_uniform_set , RID p_importance_map_uniform_set ) {
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( p_compute_list , p_gather_uniform_set , 0 ) ;
2020-12-08 06:37:09 +01:00
if ( ( p_settings . quality = = RS : : ENV_SSAO_QUALITY_ULTRA ) & & ! p_adaptive_base_pass ) {
2021-06-13 19:42:10 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( p_compute_list , p_importance_map_uniform_set , 1 ) ;
2020-12-08 06:37:09 +01:00
}
for ( int i = 0 ; i < 4 ; i + + ) {
if ( ( p_settings . quality = = RS : : ENV_SSAO_QUALITY_VERY_LOW ) & & ( ( i = = 1 ) | | ( i = = 2 ) ) ) {
continue ;
}
ssao . gather_push_constant . pass_coord_offset [ 0 ] = i % 2 ;
ssao . gather_push_constant . pass_coord_offset [ 1 ] = i / 2 ;
2020-12-31 19:33:38 +01:00
ssao . gather_push_constant . pass_uv_offset [ 0 ] = ( ( i % 2 ) - 0.0 ) / p_settings . full_screen_size . x ;
ssao . gather_push_constant . pass_uv_offset [ 1 ] = ( ( i / 2 ) - 0.0 ) / p_settings . full_screen_size . y ;
2020-12-08 06:37:09 +01:00
ssao . gather_push_constant . pass = i ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( p_compute_list , _get_uniform_set_from_image ( p_ao_slices [ i ] ) , 2 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( p_compute_list , & ssao . gather_push_constant , sizeof ( SSAOGatherPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
Size2i size = Size2i ( p_settings . full_screen_size . x > > ( p_settings . half_size ? 2 : 1 ) , p_settings . full_screen_size . y > > ( p_settings . half_size ? 2 : 1 ) ) ;
2020-01-25 11:18:55 +01:00
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( p_compute_list , size . x , size . y , 1 ) ;
2020-12-08 06:37:09 +01:00
}
RD : : get_singleton ( ) - > compute_list_add_barrier ( p_compute_list ) ;
}
2021-06-13 19:42:10 +02:00
void EffectsRD : : generate_ssao ( RID p_depth_buffer , RID p_normal_buffer , RID p_depth_mipmaps_texture , const Vector < RID > & p_depth_mipmaps , RID p_ao , const Vector < RID > p_ao_slices , RID p_ao_pong , const Vector < RID > p_ao_pong_slices , RID p_upscale_buffer , RID p_importance_map , RID p_importance_map_pong , const CameraMatrix & p_projection , const SSAOSettings & p_settings , bool p_invalidate_uniform_sets , RID & r_downsample_uniform_set , RID & r_gather_uniform_set , RID & r_importance_map_uniform_set ) {
2020-10-19 00:27:51 +02:00
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > draw_command_begin_label ( " SSAO " ) ;
2020-10-19 00:27:51 +02:00
/* FIRST PASS */
2020-12-08 06:37:09 +01:00
// Downsample and deinterleave the depth buffer.
{
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > draw_command_begin_label ( " Downsample Depth " ) ;
2020-12-08 06:37:09 +01:00
if ( p_invalidate_uniform_sets ) {
Vector < RD : : Uniform > uniforms ;
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_IMAGE ;
u . binding = 0 ;
2020-12-31 19:33:38 +01:00
u . ids . push_back ( p_depth_mipmaps [ 1 ] ) ;
2020-12-08 06:37:09 +01:00
uniforms . push_back ( u ) ;
2020-10-19 00:27:51 +02:00
}
2020-12-08 06:37:09 +01:00
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_IMAGE ;
u . binding = 1 ;
2020-12-31 19:33:38 +01:00
u . ids . push_back ( p_depth_mipmaps [ 2 ] ) ;
2020-12-08 06:37:09 +01:00
uniforms . push_back ( u ) ;
}
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_IMAGE ;
u . binding = 2 ;
2020-12-31 19:33:38 +01:00
u . ids . push_back ( p_depth_mipmaps [ 3 ] ) ;
2020-12-08 06:37:09 +01:00
uniforms . push_back ( u ) ;
}
2021-06-13 19:42:10 +02:00
r_downsample_uniform_set = RD : : get_singleton ( ) - > uniform_set_create ( uniforms , ssao . downsample_shader . version_get_shader ( ssao . downsample_shader_version , 2 ) , 2 ) ;
2020-12-08 06:37:09 +01:00
}
float depth_linearize_mul = - p_projection . matrix [ 3 ] [ 2 ] ;
float depth_linearize_add = p_projection . matrix [ 2 ] [ 2 ] ;
if ( depth_linearize_mul * depth_linearize_add < 0 ) {
depth_linearize_add = - depth_linearize_add ;
}
ssao . downsample_push_constant . orthogonal = p_projection . is_orthogonal ( ) ;
ssao . downsample_push_constant . z_near = depth_linearize_mul ;
ssao . downsample_push_constant . z_far = depth_linearize_add ;
if ( ssao . downsample_push_constant . orthogonal ) {
ssao . downsample_push_constant . z_near = p_projection . get_z_near ( ) ;
ssao . downsample_push_constant . z_far = p_projection . get_z_far ( ) ;
}
2020-12-31 19:33:38 +01:00
ssao . downsample_push_constant . pixel_size [ 0 ] = 1.0 / p_settings . full_screen_size . x ;
ssao . downsample_push_constant . pixel_size [ 1 ] = 1.0 / p_settings . full_screen_size . y ;
2020-12-08 06:37:09 +01:00
ssao . downsample_push_constant . radius_sq = p_settings . radius * p_settings . radius ;
int downsample_pipeline = SSAO_DOWNSAMPLE ;
if ( p_settings . quality = = RS : : ENV_SSAO_QUALITY_VERY_LOW ) {
downsample_pipeline = SSAO_DOWNSAMPLE_HALF ;
} else if ( p_settings . quality > RS : : ENV_SSAO_QUALITY_MEDIUM ) {
downsample_pipeline = SSAO_DOWNSAMPLE_MIPMAP ;
}
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
if ( p_settings . half_size ) {
downsample_pipeline + + ;
2020-10-19 00:27:51 +02:00
}
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , ssao . pipelines [ downsample_pipeline ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_depth_buffer ) , 0 ) ;
2020-12-31 19:33:38 +01:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_depth_mipmaps [ 0 ] ) , 1 ) ;
2020-12-08 06:37:09 +01:00
if ( p_settings . quality > RS : : ENV_SSAO_QUALITY_MEDIUM ) {
2021-06-13 19:42:10 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , r_downsample_uniform_set , 2 ) ;
2020-12-08 06:37:09 +01:00
}
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & ssao . downsample_push_constant , sizeof ( SSAODownsamplePushConstant ) ) ;
2020-09-15 08:47:07 +02:00
2021-02-02 20:51:36 +01:00
Size2i size ( MAX ( 1 , p_settings . full_screen_size . x > > ( p_settings . half_size ? 2 : 1 ) ) , MAX ( 1 , p_settings . full_screen_size . y > > ( p_settings . half_size ? 2 : 1 ) ) ) ;
2020-09-15 08:47:07 +02:00
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , size . x , size . y , 1 ) ;
2020-10-19 00:27:51 +02:00
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > draw_command_end_label ( ) ; // Downsample SSAO
2020-01-25 11:18:55 +01:00
}
2020-10-19 00:27:51 +02:00
/* SECOND PASS */
2020-12-08 06:37:09 +01:00
// Sample SSAO
{
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > draw_command_begin_label ( " Gather Samples " ) ;
2020-12-31 19:33:38 +01:00
ssao . gather_push_constant . screen_size [ 0 ] = p_settings . full_screen_size . x ;
ssao . gather_push_constant . screen_size [ 1 ] = p_settings . full_screen_size . y ;
2020-12-08 06:37:09 +01:00
ssao . gather_push_constant . half_screen_pixel_size [ 0 ] = 1.0 / p_settings . half_screen_size . x ;
ssao . gather_push_constant . half_screen_pixel_size [ 1 ] = 1.0 / p_settings . half_screen_size . y ;
float tan_half_fov_x = 1.0 / p_projection . matrix [ 0 ] [ 0 ] ;
float tan_half_fov_y = 1.0 / p_projection . matrix [ 1 ] [ 1 ] ;
ssao . gather_push_constant . NDC_to_view_mul [ 0 ] = tan_half_fov_x * 2.0 ;
ssao . gather_push_constant . NDC_to_view_mul [ 1 ] = tan_half_fov_y * - 2.0 ;
ssao . gather_push_constant . NDC_to_view_add [ 0 ] = tan_half_fov_x * - 1.0 ;
ssao . gather_push_constant . NDC_to_view_add [ 1 ] = tan_half_fov_y ;
ssao . gather_push_constant . is_orthogonal = p_projection . is_orthogonal ( ) ;
ssao . gather_push_constant . half_screen_pixel_size_x025 [ 0 ] = ssao . gather_push_constant . half_screen_pixel_size [ 0 ] * 0.25 ;
ssao . gather_push_constant . half_screen_pixel_size_x025 [ 1 ] = ssao . gather_push_constant . half_screen_pixel_size [ 1 ] * 0.25 ;
float radius_near_limit = ( p_settings . radius * 1.2f ) ;
if ( p_settings . quality < = RS : : ENV_SSAO_QUALITY_LOW ) {
radius_near_limit * = 1.50f ;
if ( p_settings . quality = = RS : : ENV_SSAO_QUALITY_VERY_LOW ) {
ssao . gather_push_constant . radius * = 0.8f ;
}
if ( p_settings . half_size ) {
ssao . gather_push_constant . radius * = 0.5f ;
}
}
radius_near_limit / = tan_half_fov_y ;
ssao . gather_push_constant . radius = p_settings . radius ;
ssao . gather_push_constant . intensity = p_settings . intensity ;
ssao . gather_push_constant . shadow_power = p_settings . power ;
ssao . gather_push_constant . shadow_clamp = 0.98 ;
ssao . gather_push_constant . fade_out_mul = - 1.0 / ( p_settings . fadeout_to - p_settings . fadeout_from ) ;
ssao . gather_push_constant . fade_out_add = p_settings . fadeout_from / ( p_settings . fadeout_to - p_settings . fadeout_from ) + 1.0 ;
ssao . gather_push_constant . horizon_angle_threshold = p_settings . horizon ;
ssao . gather_push_constant . inv_radius_near_limit = 1.0f / radius_near_limit ;
ssao . gather_push_constant . neg_inv_radius = - 1.0 / ssao . gather_push_constant . radius ;
2020-12-31 19:33:38 +01:00
ssao . gather_push_constant . load_counter_avg_div = 9.0 / float ( ( p_settings . quarter_screen_size . x ) * ( p_settings . quarter_screen_size . y ) * 255 ) ;
2020-12-08 06:37:09 +01:00
ssao . gather_push_constant . adaptive_sample_limit = p_settings . adaptive_target ;
ssao . gather_push_constant . detail_intensity = p_settings . detail ;
ssao . gather_push_constant . quality = MAX ( 0 , p_settings . quality - 1 ) ;
ssao . gather_push_constant . size_multiplier = p_settings . half_size ? 2 : 1 ;
if ( p_invalidate_uniform_sets ) {
Vector < RD : : Uniform > uniforms ;
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_SAMPLER_WITH_TEXTURE ;
u . binding = 0 ;
u . ids . push_back ( ssao . mirror_sampler ) ;
u . ids . push_back ( p_depth_mipmaps_texture ) ;
uniforms . push_back ( u ) ;
}
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_IMAGE ;
u . binding = 1 ;
u . ids . push_back ( p_normal_buffer ) ;
uniforms . push_back ( u ) ;
}
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_UNIFORM_BUFFER ;
u . binding = 2 ;
u . ids . push_back ( ssao . gather_constants_buffer ) ;
uniforms . push_back ( u ) ;
}
2021-06-13 19:42:10 +02:00
r_gather_uniform_set = RD : : get_singleton ( ) - > uniform_set_create ( uniforms , ssao . gather_shader . version_get_shader ( ssao . gather_shader_version , 0 ) , 0 ) ;
2020-12-08 06:37:09 +01:00
}
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
if ( p_invalidate_uniform_sets ) {
Vector < RD : : Uniform > uniforms ;
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_IMAGE ;
u . binding = 0 ;
u . ids . push_back ( p_ao_pong ) ;
uniforms . push_back ( u ) ;
}
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_SAMPLER_WITH_TEXTURE ;
u . binding = 1 ;
u . ids . push_back ( default_sampler ) ;
u . ids . push_back ( p_importance_map ) ;
uniforms . push_back ( u ) ;
}
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_STORAGE_BUFFER ;
u . binding = 2 ;
u . ids . push_back ( ssao . importance_map_load_counter ) ;
uniforms . push_back ( u ) ;
}
2021-06-13 19:42:10 +02:00
r_importance_map_uniform_set = RD : : get_singleton ( ) - > uniform_set_create ( uniforms , ssao . gather_shader . version_get_shader ( ssao . gather_shader_version , 2 ) , 1 ) ;
2020-12-08 06:37:09 +01:00
}
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
if ( p_settings . quality = = RS : : ENV_SSAO_QUALITY_ULTRA ) {
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > draw_command_begin_label ( " Generate Importance Map " ) ;
2020-12-08 06:37:09 +01:00
ssao . importance_map_push_constant . half_screen_pixel_size [ 0 ] = 1.0 / p_settings . half_screen_size . x ;
ssao . importance_map_push_constant . half_screen_pixel_size [ 1 ] = 1.0 / p_settings . half_screen_size . y ;
ssao . importance_map_push_constant . intensity = p_settings . intensity ;
ssao . importance_map_push_constant . power = p_settings . power ;
//base pass
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , ssao . pipelines [ SSAO_GATHER_BASE ] ) ;
2021-06-13 19:42:10 +02:00
gather_ssao ( compute_list , p_ao_pong_slices , p_settings , true , r_gather_uniform_set , RID ( ) ) ;
2020-12-08 06:37:09 +01:00
//generate importance map
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , ssao . pipelines [ SSAO_GENERATE_IMPORTANCE_MAP ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_ao_pong ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_importance_map ) , 1 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & ssao . importance_map_push_constant , sizeof ( SSAOImportanceMapPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_settings . quarter_screen_size . x , p_settings . quarter_screen_size . y , 1 ) ;
2020-12-08 06:37:09 +01:00
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
//process importance map A
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , ssao . pipelines [ SSAO_PROCESS_IMPORTANCE_MAPA ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_importance_map ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_importance_map_pong ) , 1 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & ssao . importance_map_push_constant , sizeof ( SSAOImportanceMapPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_settings . quarter_screen_size . x , p_settings . quarter_screen_size . y , 1 ) ;
2020-12-08 06:37:09 +01:00
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
//process Importance Map B
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , ssao . pipelines [ SSAO_PROCESS_IMPORTANCE_MAPB ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_importance_map_pong ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_importance_map ) , 1 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , ssao . counter_uniform_set , 2 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & ssao . importance_map_push_constant , sizeof ( SSAOImportanceMapPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_settings . quarter_screen_size . x , p_settings . quarter_screen_size . y , 1 ) ;
2020-12-08 06:37:09 +01:00
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , ssao . pipelines [ SSAO_GATHER_ADAPTIVE ] ) ;
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > draw_command_end_label ( ) ; // Importance Map
2020-10-19 00:27:51 +02:00
} else {
2020-12-08 06:37:09 +01:00
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , ssao . pipelines [ SSAO_GATHER ] ) ;
2020-10-19 00:27:51 +02:00
}
2020-01-25 11:18:55 +01:00
2021-06-13 19:42:10 +02:00
gather_ssao ( compute_list , p_ao_slices , p_settings , false , r_gather_uniform_set , r_importance_map_uniform_set ) ;
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > draw_command_end_label ( ) ; // Gather SSAO
2020-12-08 06:37:09 +01:00
}
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
// /* THIRD PASS */
// // Blur
//
{
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > draw_command_begin_label ( " Edge Aware Blur " ) ;
2020-12-08 06:37:09 +01:00
ssao . blur_push_constant . edge_sharpness = 1.0 - p_settings . sharpness ;
ssao . blur_push_constant . half_screen_pixel_size [ 0 ] = 1.0 / p_settings . half_screen_size . x ;
ssao . blur_push_constant . half_screen_pixel_size [ 1 ] = 1.0 / p_settings . half_screen_size . y ;
int blur_passes = p_settings . quality > RS : : ENV_SSAO_QUALITY_VERY_LOW ? p_settings . blur_passes : 1 ;
for ( int pass = 0 ; pass < blur_passes ; pass + + ) {
int blur_pipeline = SSAO_BLUR_PASS ;
if ( p_settings . quality > RS : : ENV_SSAO_QUALITY_VERY_LOW ) {
if ( pass < blur_passes - 2 ) {
blur_pipeline = SSAO_BLUR_PASS_WIDE ;
2021-07-26 16:09:40 +02:00
} else {
blur_pipeline = SSAO_BLUR_PASS_SMART ;
2020-12-08 06:37:09 +01:00
}
}
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
for ( int i = 0 ; i < 4 ; i + + ) {
if ( ( p_settings . quality = = RS : : ENV_SSAO_QUALITY_VERY_LOW ) & & ( ( i = = 1 ) | | ( i = = 2 ) ) ) {
continue ;
}
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , ssao . pipelines [ blur_pipeline ] ) ;
if ( pass % 2 = = 0 ) {
if ( p_settings . quality = = RS : : ENV_SSAO_QUALITY_VERY_LOW ) {
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_ao_slices [ i ] ) , 0 ) ;
} else {
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture_and_sampler ( p_ao_slices [ i ] , ssao . mirror_sampler ) , 0 ) ;
}
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_ao_pong_slices [ i ] ) , 1 ) ;
} else {
if ( p_settings . quality = = RS : : ENV_SSAO_QUALITY_VERY_LOW ) {
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_ao_pong_slices [ i ] ) , 0 ) ;
} else {
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture_and_sampler ( p_ao_pong_slices [ i ] , ssao . mirror_sampler ) , 0 ) ;
}
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_ao_slices [ i ] ) , 1 ) ;
}
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & ssao . blur_push_constant , sizeof ( SSAOBlurPushConstant ) ) ;
2021-02-02 20:51:36 +01:00
Size2i size ( p_settings . full_screen_size . x > > ( p_settings . half_size ? 2 : 1 ) , p_settings . full_screen_size . y > > ( p_settings . half_size ? 2 : 1 ) ) ;
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , size . x , size . y , 1 ) ;
2020-12-08 06:37:09 +01:00
}
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
if ( p_settings . quality > RS : : ENV_SSAO_QUALITY_VERY_LOW ) {
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
}
}
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > draw_command_end_label ( ) ; // Blur
2020-10-19 00:27:51 +02:00
}
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
/* FOURTH PASS */
// Interleave buffers
// back to full size
{
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > draw_command_begin_label ( " Interleave Buffers " ) ;
2020-12-08 06:37:09 +01:00
ssao . interleave_push_constant . inv_sharpness = 1.0 - p_settings . sharpness ;
2020-12-31 19:33:38 +01:00
ssao . interleave_push_constant . pixel_size [ 0 ] = 1.0 / p_settings . full_screen_size . x ;
ssao . interleave_push_constant . pixel_size [ 1 ] = 1.0 / p_settings . full_screen_size . y ;
2020-12-08 06:37:09 +01:00
ssao . interleave_push_constant . size_modifier = uint32_t ( p_settings . half_size ? 4 : 2 ) ;
int interleave_pipeline = SSAO_INTERLEAVE_HALF ;
if ( p_settings . quality = = RS : : ENV_SSAO_QUALITY_LOW ) {
interleave_pipeline = SSAO_INTERLEAVE ;
} else if ( p_settings . quality > = RS : : ENV_SSAO_QUALITY_MEDIUM ) {
interleave_pipeline = SSAO_INTERLEAVE_SMART ;
}
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , ssao . pipelines [ interleave_pipeline ] ) ;
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_upscale_buffer ) , 0 ) ;
if ( p_settings . quality > RS : : ENV_SSAO_QUALITY_VERY_LOW & & p_settings . blur_passes % 2 = = 0 ) {
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_ao ) , 1 ) ;
} else {
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_ao_pong ) , 1 ) ;
}
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & ssao . interleave_push_constant , sizeof ( SSAOInterleavePushConstant ) ) ;
2020-01-25 11:18:55 +01:00
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_settings . full_screen_size . x , p_settings . full_screen_size . y , 1 ) ;
2020-12-08 06:37:09 +01:00
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > draw_command_end_label ( ) ; // Interleave
2020-01-25 11:18:55 +01:00
}
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > draw_command_end_label ( ) ; //SSAO
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_end ( RD : : BARRIER_MASK_TRANSFER ) ; //wait for upcoming transfer
2020-12-08 06:37:09 +01:00
int zero [ 1 ] = { 0 } ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > buffer_update ( ssao . importance_map_load_counter , 0 , sizeof ( uint32_t ) , & zero , 0 ) ; //no barrier
2020-01-25 11:18:55 +01:00
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : roughness_limit ( RID p_source_normal , RID p_roughness , const Size2i & p_size , float p_curve ) {
2020-01-27 00:09:40 +01:00
roughness_limiter . push_constant . screen_size [ 0 ] = p_size . x ;
roughness_limiter . push_constant . screen_size [ 1 ] = p_size . y ;
roughness_limiter . push_constant . curve = p_curve ;
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , roughness_limiter . pipeline ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_source_normal ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_roughness ) , 1 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & roughness_limiter . push_constant , sizeof ( RoughnessLimiterPushConstant ) ) ; //not used but set anyway
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_size . x , p_size . y , 1 ) ;
2020-01-27 00:09:40 +01:00
RD : : get_singleton ( ) - > compute_list_end ( ) ;
}
2021-07-27 15:33:47 +02:00
void EffectsRD : : cubemap_roughness ( RID p_source_rd_texture , RID p_dest_texture , uint32_t p_face_id , uint32_t p_sample_count , float p_roughness , float p_size ) {
ERR_FAIL_COND_MSG ( prefer_raster_effects , " Can't use compute based cubemap roughness with the mobile renderer. " ) ;
2021-04-27 16:19:21 +02:00
memset ( & roughness . push_constant , 0 , sizeof ( CubemapRoughnessPushConstant ) ) ;
2020-03-20 01:32:19 +01:00
roughness . push_constant . face_id = p_face_id > 9 ? 0 : p_face_id ;
roughness . push_constant . roughness = p_roughness ;
roughness . push_constant . sample_count = p_sample_count ;
roughness . push_constant . use_direct_write = p_roughness = = 0.0 ;
roughness . push_constant . face_size = p_size ;
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
2021-07-27 15:33:47 +02:00
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , roughness . compute_pipeline ) ;
2020-03-20 01:32:19 +01:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_source_rd_texture ) , 0 ) ;
2021-07-27 15:33:47 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_dest_texture ) , 1 ) ;
2020-03-20 01:32:19 +01:00
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & roughness . push_constant , sizeof ( CubemapRoughnessPushConstant ) ) ;
int x_groups = ( p_size - 1 ) / 8 + 1 ;
int y_groups = ( p_size - 1 ) / 8 + 1 ;
RD : : get_singleton ( ) - > compute_list_dispatch ( compute_list , x_groups , y_groups , p_face_id > 9 ? 6 : 1 ) ;
RD : : get_singleton ( ) - > compute_list_end ( ) ;
}
2021-07-27 15:33:47 +02:00
void EffectsRD : : cubemap_roughness_raster ( RID p_source_rd_texture , RID p_dest_framebuffer , uint32_t p_face_id , uint32_t p_sample_count , float p_roughness , float p_size ) {
ERR_FAIL_COND_MSG ( ! prefer_raster_effects , " Can't use raster based cubemap roughness with the clustered renderer. " ) ;
ERR_FAIL_COND_MSG ( p_face_id > = 6 , " Raster implementation of cubemap roughness must process one side at a time. " ) ;
memset ( & roughness . push_constant , 0 , sizeof ( CubemapRoughnessPushConstant ) ) ;
roughness . push_constant . face_id = p_face_id ;
roughness . push_constant . roughness = p_roughness ;
roughness . push_constant . sample_count = p_sample_count ;
roughness . push_constant . use_direct_write = p_roughness = = 0.0 ;
roughness . push_constant . face_size = p_size ;
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( p_dest_framebuffer , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_DISCARD ) ;
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , roughness . raster_pipeline . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( p_dest_framebuffer ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_source_rd_texture ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & roughness . push_constant , sizeof ( CubemapRoughnessPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : cubemap_downsample ( RID p_source_cubemap , RID p_dest_cubemap , const Size2i & p_size ) {
2021-07-27 15:33:47 +02:00
ERR_FAIL_COND_MSG ( prefer_raster_effects , " Can't use compute based cubemap downsample with the mobile renderer. " ) ;
2020-02-21 00:27:34 +01:00
cubemap_downsampler . push_constant . face_size = p_size . x ;
2021-07-27 15:33:47 +02:00
cubemap_downsampler . push_constant . face_id = 0 ; // we render all 6 sides to each layer in one call
2020-02-21 00:27:34 +01:00
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
2021-07-27 15:33:47 +02:00
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , cubemap_downsampler . compute_pipeline ) ;
2020-02-21 00:27:34 +01:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_source_cubemap ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_dest_cubemap ) , 1 ) ;
int x_groups = ( p_size . x - 1 ) / 8 + 1 ;
int y_groups = ( p_size . y - 1 ) / 8 + 1 ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & cubemap_downsampler . push_constant , sizeof ( CubemapDownsamplerPushConstant ) ) ;
RD : : get_singleton ( ) - > compute_list_dispatch ( compute_list , x_groups , y_groups , 6 ) ; // one z_group for each face
RD : : get_singleton ( ) - > compute_list_end ( ) ;
}
2021-07-27 15:33:47 +02:00
void EffectsRD : : cubemap_downsample_raster ( RID p_source_cubemap , RID p_dest_framebuffer , uint32_t p_face_id , const Size2i & p_size ) {
ERR_FAIL_COND_MSG ( ! prefer_raster_effects , " Can't use raster based cubemap downsample with the clustered renderer. " ) ;
ERR_FAIL_COND_MSG ( p_face_id > = 6 , " Raster implementation of cubemap downsample must process one side at a time. " ) ;
cubemap_downsampler . push_constant . face_size = p_size . x ;
cubemap_downsampler . push_constant . face_id = p_face_id ;
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( p_dest_framebuffer , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_DISCARD ) ;
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , cubemap_downsampler . raster_pipeline . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( p_dest_framebuffer ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_source_cubemap ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & cubemap_downsampler . push_constant , sizeof ( CubemapDownsamplerPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : cubemap_filter ( RID p_source_cubemap , Vector < RID > p_dest_cubemap , bool p_use_array ) {
2021-07-27 15:33:47 +02:00
ERR_FAIL_COND_MSG ( prefer_raster_effects , " Can't use compute based cubemap filter with the mobile renderer. " ) ;
2020-02-28 18:06:22 +01:00
Vector < RD : : Uniform > uniforms ;
for ( int i = 0 ; i < p_dest_cubemap . size ( ) ; i + + ) {
RD : : Uniform u ;
2020-10-17 03:19:21 +02:00
u . uniform_type = RD : : UNIFORM_TYPE_IMAGE ;
2020-02-28 18:06:22 +01:00
u . binding = i ;
u . ids . push_back ( p_dest_cubemap [ i ] ) ;
uniforms . push_back ( u ) ;
}
if ( RD : : get_singleton ( ) - > uniform_set_is_valid ( filter . image_uniform_set ) ) {
RD : : get_singleton ( ) - > free ( filter . image_uniform_set ) ;
}
2021-07-27 15:33:47 +02:00
filter . image_uniform_set = RD : : get_singleton ( ) - > uniform_set_create ( uniforms , filter . compute_shader . version_get_shader ( filter . shader_version , 0 ) , 2 ) ;
2020-02-28 18:06:22 +01:00
2020-02-21 00:27:34 +01:00
int pipeline = p_use_array ? FILTER_MODE_HIGH_QUALITY_ARRAY : FILTER_MODE_HIGH_QUALITY ;
pipeline = filter . use_high_quality ? pipeline : pipeline + 1 ;
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
2021-07-27 15:33:47 +02:00
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , filter . compute_pipelines [ pipeline ] ) ;
2020-02-21 00:27:34 +01:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_source_cubemap , true ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , filter . uniform_set , 1 ) ;
2020-02-28 18:06:22 +01:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , filter . image_uniform_set , 2 ) ;
2020-02-21 00:27:34 +01:00
int x_groups = p_use_array ? 1792 : 342 ; // (128 * 128 * 7) / 64 : (128*128 + 64*64 + 32*32 + 16*16 + 8*8 + 4*4 + 2*2) / 64
RD : : get_singleton ( ) - > compute_list_dispatch ( compute_list , x_groups , 6 , 1 ) ; // one y_group for each face
RD : : get_singleton ( ) - > compute_list_end ( ) ;
}
2021-07-27 15:33:47 +02:00
void EffectsRD : : cubemap_filter_raster ( RID p_source_cubemap , RID p_dest_framebuffer , uint32_t p_face_id , uint32_t p_mip_level ) {
ERR_FAIL_COND_MSG ( ! prefer_raster_effects , " Can't use raster based cubemap filter with the clustered renderer. " ) ;
ERR_FAIL_COND_MSG ( p_face_id > = 6 , " Raster implementation of cubemap filter must process one side at a time. " ) ;
// TODO implement!
CubemapFilterRasterPushConstant push_constant ;
push_constant . mip_level = p_mip_level ;
push_constant . face_id = p_face_id ;
CubemapFilterMode mode = filter . use_high_quality ? FILTER_MODE_HIGH_QUALITY : FILTER_MODE_LOW_QUALITY ;
RD : : DrawListID draw_list = RD : : get_singleton ( ) - > draw_list_begin ( p_dest_framebuffer , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_READ , RD : : INITIAL_ACTION_KEEP , RD : : FINAL_ACTION_DISCARD ) ;
RD : : get_singleton ( ) - > draw_list_bind_render_pipeline ( draw_list , filter . raster_pipelines [ mode ] . get_render_pipeline ( RD : : INVALID_ID , RD : : get_singleton ( ) - > framebuffer_get_format ( p_dest_framebuffer ) ) ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , _get_uniform_set_from_texture ( p_source_cubemap ) , 0 ) ;
RD : : get_singleton ( ) - > draw_list_bind_uniform_set ( draw_list , filter . uniform_set , 1 ) ;
RD : : get_singleton ( ) - > draw_list_bind_index_array ( draw_list , index_array ) ;
RD : : get_singleton ( ) - > draw_list_set_push_constant ( draw_list , & push_constant , sizeof ( CubemapFilterRasterPushConstant ) ) ;
RD : : get_singleton ( ) - > draw_list_draw ( draw_list , true ) ;
RD : : get_singleton ( ) - > draw_list_end ( ) ;
}
2021-06-05 00:47:26 +02:00
void EffectsRD : : resolve_gi ( RID p_source_depth , RID p_source_normal_roughness , RID p_source_voxel_gi , RID p_dest_depth , RID p_dest_normal_roughness , RID p_dest_voxel_gi , Vector2i p_screen_size , int p_samples , uint32_t p_barrier ) {
2020-06-25 15:33:28 +02:00
ResolvePushConstant push_constant ;
push_constant . screen_size [ 0 ] = p_screen_size . x ;
push_constant . screen_size [ 1 ] = p_screen_size . y ;
push_constant . samples = p_samples ;
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
2021-06-05 00:47:26 +02:00
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , resolve . pipelines [ p_source_voxel_gi . is_valid ( ) ? RESOLVE_MODE_GI_VOXEL_GI : RESOLVE_MODE_GI ] ) ;
2020-06-25 15:33:28 +02:00
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture_pair ( p_source_depth , p_source_normal_roughness ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_image_pair ( p_dest_depth , p_dest_normal_roughness ) , 1 ) ;
2021-06-05 00:47:26 +02:00
if ( p_source_voxel_gi . is_valid ( ) ) {
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_source_voxel_gi ) , 2 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_dest_voxel_gi ) , 3 ) ;
2020-06-25 15:33:28 +02:00
}
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & push_constant , sizeof ( ResolvePushConstant ) ) ;
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_screen_size . x , p_screen_size . y , 1 ) ;
2020-06-25 15:33:28 +02:00
2021-02-02 20:51:36 +01:00
RD : : get_singleton ( ) - > compute_list_end ( p_barrier ) ;
2020-06-25 15:33:28 +02:00
}
2021-07-05 19:48:23 +02:00
void EffectsRD : : resolve_depth ( RID p_source_depth , RID p_dest_depth , Vector2i p_screen_size , int p_samples , uint32_t p_barrier ) {
ResolvePushConstant push_constant ;
push_constant . screen_size [ 0 ] = p_screen_size . x ;
push_constant . screen_size [ 1 ] = p_screen_size . y ;
push_constant . samples = p_samples ;
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , resolve . pipelines [ RESOLVE_MODE_DEPTH ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_compute_uniform_set_from_texture ( p_source_depth ) , 0 ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , _get_uniform_set_from_image ( p_dest_depth ) , 1 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & push_constant , sizeof ( ResolvePushConstant ) ) ;
RD : : get_singleton ( ) - > compute_list_dispatch_threads ( compute_list , p_screen_size . x , p_screen_size . y , 1 ) ;
RD : : get_singleton ( ) - > compute_list_end ( p_barrier ) ;
}
2020-12-04 19:26:24 +01:00
void EffectsRD : : sort_buffer ( RID p_uniform_set , int p_size ) {
2020-08-19 15:38:24 +02:00
Sort : : PushConstant push_constant ;
push_constant . total_elements = p_size ;
bool done = true ;
int numThreadGroups = ( ( p_size - 1 ) > > 9 ) + 1 ;
if ( numThreadGroups > 1 ) {
done = false ;
}
RD : : ComputeListID compute_list = RD : : get_singleton ( ) - > compute_list_begin ( ) ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , sort . pipelines [ SORT_MODE_BLOCK ] ) ;
RD : : get_singleton ( ) - > compute_list_bind_uniform_set ( compute_list , p_uniform_set , 1 ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & push_constant , sizeof ( Sort : : PushConstant ) ) ;
RD : : get_singleton ( ) - > compute_list_dispatch ( compute_list , numThreadGroups , 1 , 1 ) ;
int presorted = 512 ;
while ( ! done ) {
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
done = true ;
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , sort . pipelines [ SORT_MODE_STEP ] ) ;
numThreadGroups = 0 ;
if ( p_size > presorted ) {
if ( p_size > presorted * 2 ) {
done = false ;
}
int pow2 = presorted ;
while ( pow2 < p_size ) {
pow2 * = 2 ;
}
numThreadGroups = pow2 > > 9 ;
}
unsigned int nMergeSize = presorted * 2 ;
for ( unsigned int nMergeSubSize = nMergeSize > > 1 ; nMergeSubSize > 256 ; nMergeSubSize = nMergeSubSize > > 1 ) {
push_constant . job_params [ 0 ] = nMergeSubSize ;
if ( nMergeSubSize = = nMergeSize > > 1 ) {
push_constant . job_params [ 1 ] = ( 2 * nMergeSubSize - 1 ) ;
push_constant . job_params [ 2 ] = - 1 ;
} else {
push_constant . job_params [ 1 ] = nMergeSubSize ;
push_constant . job_params [ 2 ] = 1 ;
}
push_constant . job_params [ 3 ] = 0 ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & push_constant , sizeof ( Sort : : PushConstant ) ) ;
RD : : get_singleton ( ) - > compute_list_dispatch ( compute_list , numThreadGroups , 1 , 1 ) ;
RD : : get_singleton ( ) - > compute_list_add_barrier ( compute_list ) ;
}
RD : : get_singleton ( ) - > compute_list_bind_compute_pipeline ( compute_list , sort . pipelines [ SORT_MODE_INNER ] ) ;
RD : : get_singleton ( ) - > compute_list_set_push_constant ( compute_list , & push_constant , sizeof ( Sort : : PushConstant ) ) ;
RD : : get_singleton ( ) - > compute_list_dispatch ( compute_list , numThreadGroups , 1 , 1 ) ;
presorted * = 2 ;
}
RD : : get_singleton ( ) - > compute_list_end ( ) ;
}
2021-07-20 13:40:16 +02:00
EffectsRD : : EffectsRD ( bool p_prefer_raster_effects ) {
prefer_raster_effects = p_prefer_raster_effects ;
if ( prefer_raster_effects ) {
// init blur shader (on compute use copy shader)
Vector < String > blur_modes ;
2021-08-11 13:00:12 +02:00
blur_modes . push_back ( " \n #define MODE_MIPMAP \n " ) ; // BLUR_MIPMAP
2021-07-20 13:40:16 +02:00
blur_modes . push_back ( " \n #define MODE_GAUSSIAN_BLUR \n " ) ; // BLUR_MODE_GAUSSIAN_BLUR
blur_modes . push_back ( " \n #define MODE_GAUSSIAN_GLOW \n " ) ; // BLUR_MODE_GAUSSIAN_GLOW
blur_modes . push_back ( " \n #define MODE_GAUSSIAN_GLOW \n #define GLOW_USE_AUTO_EXPOSURE \n " ) ; // BLUR_MODE_GAUSSIAN_GLOW_AUTO_EXPOSURE
2021-07-29 09:43:17 +02:00
blur_modes . push_back ( " \n #define MODE_COPY \n " ) ; // BLUR_MODE_COPY
2021-07-20 13:40:16 +02:00
blur_raster . shader . initialize ( blur_modes ) ;
memset ( & blur_raster . push_constant , 0 , sizeof ( BlurRasterPushConstant ) ) ;
blur_raster . shader_version = blur_raster . shader . version_create ( ) ;
for ( int i = 0 ; i < BLUR_MODE_MAX ; i + + ) {
blur_raster . pipelines [ i ] . setup ( blur_raster . shader . version_get_shader ( blur_raster . shader_version , i ) , RD : : RENDER_PRIMITIVE_TRIANGLES , RD : : PipelineRasterizationState ( ) , RD : : PipelineMultisampleState ( ) , RD : : PipelineDepthStencilState ( ) , RD : : PipelineColorBlendState : : create_disabled ( ) , 0 ) ;
}
} else {
// not used in clustered
for ( int i = 0 ; i < BLUR_MODE_MAX ; i + + ) {
blur_raster . pipelines [ i ] . clear ( ) ;
}
}
2020-04-11 19:43:12 +02:00
{ // Initialize copy
Vector < String > copy_modes ;
copy_modes . push_back ( " \n #define MODE_GAUSSIAN_BLUR \n " ) ;
copy_modes . push_back ( " \n #define MODE_GAUSSIAN_BLUR \n #define DST_IMAGE_8BIT \n " ) ;
copy_modes . push_back ( " \n #define MODE_GAUSSIAN_GLOW \n " ) ;
copy_modes . push_back ( " \n #define MODE_GAUSSIAN_GLOW \n #define GLOW_USE_AUTO_EXPOSURE \n " ) ;
copy_modes . push_back ( " \n #define MODE_SIMPLE_COPY \n " ) ;
copy_modes . push_back ( " \n #define MODE_SIMPLE_COPY \n #define DST_IMAGE_8BIT \n " ) ;
copy_modes . push_back ( " \n #define MODE_SIMPLE_COPY_DEPTH \n " ) ;
2020-10-28 19:34:27 +01:00
copy_modes . push_back ( " \n #define MODE_SET_COLOR \n " ) ;
copy_modes . push_back ( " \n #define MODE_SET_COLOR \n #define DST_IMAGE_8BIT \n " ) ;
2020-04-11 19:43:12 +02:00
copy_modes . push_back ( " \n #define MODE_MIPMAP \n " ) ;
copy_modes . push_back ( " \n #define MODE_LINEARIZE_DEPTH_COPY \n " ) ;
2020-05-01 14:34:23 +02:00
copy_modes . push_back ( " \n #define MODE_CUBEMAP_TO_PANORAMA \n " ) ;
copy_modes . push_back ( " \n #define MODE_CUBEMAP_ARRAY_TO_PANORAMA \n " ) ;
2020-04-11 19:43:12 +02:00
copy . shader . initialize ( copy_modes ) ;
2021-04-27 16:19:21 +02:00
memset ( & copy . push_constant , 0 , sizeof ( CopyPushConstant ) ) ;
2021-07-20 13:40:16 +02:00
if ( prefer_raster_effects ) {
// disable shaders we can't use
copy . shader . set_variant_enabled ( COPY_MODE_GAUSSIAN_COPY , false ) ;
copy . shader . set_variant_enabled ( COPY_MODE_GAUSSIAN_COPY_8BIT , false ) ;
copy . shader . set_variant_enabled ( COPY_MODE_GAUSSIAN_GLOW , false ) ;
copy . shader . set_variant_enabled ( COPY_MODE_GAUSSIAN_GLOW_AUTO_EXPOSURE , false ) ;
}
2020-04-11 19:43:12 +02:00
copy . shader_version = copy . shader . version_create ( ) ;
for ( int i = 0 ; i < COPY_MODE_MAX ; i + + ) {
2021-07-20 13:40:16 +02:00
if ( copy . shader . is_variant_enabled ( i ) ) {
copy . pipelines [ i ] = RD : : get_singleton ( ) - > compute_pipeline_create ( copy . shader . version_get_shader ( copy . shader_version , i ) ) ;
}
2019-08-26 22:43:58 +02:00
}
}
2020-04-11 19:43:12 +02:00
{
Vector < String > copy_modes ;
copy_modes . push_back ( " \n " ) ;
2020-04-14 22:05:45 +02:00
copy_modes . push_back ( " \n #define MODE_PANORAMA_TO_DP \n " ) ;
2020-06-25 15:33:28 +02:00
copy_modes . push_back ( " \n #define MODE_TWO_SOURCES \n " ) ;
2020-04-11 19:43:12 +02:00
copy_to_fb . shader . initialize ( copy_modes ) ;
copy_to_fb . shader_version = copy_to_fb . shader . version_create ( ) ;
//use additive
2020-04-14 05:05:21 +02:00
for ( int i = 0 ; i < COPY_TO_FB_MAX ; i + + ) {
copy_to_fb . pipelines [ i ] . setup ( copy_to_fb . shader . version_get_shader ( copy_to_fb . shader_version , i ) , RD : : RENDER_PRIMITIVE_TRIANGLES , RD : : PipelineRasterizationState ( ) , RD : : PipelineMultisampleState ( ) , RD : : PipelineDepthStencilState ( ) , RD : : PipelineColorBlendState : : create_disabled ( ) , 0 ) ;
}
2020-04-11 19:43:12 +02:00
}
2019-08-26 22:43:58 +02:00
{
// Initialize roughness
Vector < String > cubemap_roughness_modes ;
2020-03-20 01:32:19 +01:00
cubemap_roughness_modes . push_back ( " " ) ;
2019-08-26 22:43:58 +02:00
2021-07-27 15:33:47 +02:00
if ( prefer_raster_effects ) {
roughness . raster_shader . initialize ( cubemap_roughness_modes ) ;
roughness . shader_version = roughness . raster_shader . version_create ( ) ;
roughness . raster_pipeline . setup ( roughness . raster_shader . version_get_shader ( roughness . shader_version , 0 ) , RD : : RENDER_PRIMITIVE_TRIANGLES , RD : : PipelineRasterizationState ( ) , RD : : PipelineMultisampleState ( ) , RD : : PipelineDepthStencilState ( ) , RD : : PipelineColorBlendState : : create_disabled ( ) , 0 ) ;
} else {
roughness . compute_shader . initialize ( cubemap_roughness_modes ) ;
roughness . shader_version = roughness . compute_shader . version_create ( ) ;
2019-08-26 22:43:58 +02:00
2021-07-27 15:33:47 +02:00
roughness . compute_pipeline = RD : : get_singleton ( ) - > compute_pipeline_create ( roughness . compute_shader . version_get_shader ( roughness . shader_version , 0 ) ) ;
roughness . raster_pipeline . clear ( ) ;
}
2019-08-26 22:43:58 +02:00
}
2019-08-27 20:27:35 +02:00
{
// Initialize tonemapper
Vector < String > tonemap_modes ;
tonemap_modes . push_back ( " \n " ) ;
tonemap_modes . push_back ( " \n #define USE_GLOW_FILTER_BICUBIC \n " ) ;
2020-11-23 02:51:31 +01:00
tonemap_modes . push_back ( " \n #define USE_1D_LUT \n " ) ;
tonemap_modes . push_back ( " \n #define USE_GLOW_FILTER_BICUBIC \n #define USE_1D_LUT \n " ) ;
2021-06-26 12:49:25 +02:00
tonemap_modes . push_back ( " \n #define SUBPASS \n " ) ;
tonemap_modes . push_back ( " \n #define SUBPASS \n #define USE_1D_LUT \n " ) ;
2019-08-27 20:27:35 +02:00
2021-05-07 15:19:04 +02:00
// multiview versions of our shaders
tonemap_modes . push_back ( " \n #define MULTIVIEW \n " ) ;
tonemap_modes . push_back ( " \n #define MULTIVIEW \n #define USE_GLOW_FILTER_BICUBIC \n " ) ;
tonemap_modes . push_back ( " \n #define MULTIVIEW \n #define USE_1D_LUT \n " ) ;
tonemap_modes . push_back ( " \n #define MULTIVIEW \n #define USE_GLOW_FILTER_BICUBIC \n #define USE_1D_LUT \n " ) ;
2021-06-26 12:49:25 +02:00
tonemap_modes . push_back ( " \n #define MULTIVIEW \n #define SUBPASS \n " ) ;
tonemap_modes . push_back ( " \n #define MULTIVIEW \n #define SUBPASS \n #define USE_1D_LUT \n " ) ;
2021-05-07 15:19:04 +02:00
2019-08-27 20:27:35 +02:00
tonemap . shader . initialize ( tonemap_modes ) ;
2021-05-07 15:19:04 +02:00
if ( ! RendererCompositorRD : : singleton - > is_xr_enabled ( ) ) {
tonemap . shader . set_variant_enabled ( TONEMAP_MODE_NORMAL_MULTIVIEW , false ) ;
tonemap . shader . set_variant_enabled ( TONEMAP_MODE_BICUBIC_GLOW_FILTER_MULTIVIEW , false ) ;
tonemap . shader . set_variant_enabled ( TONEMAP_MODE_1D_LUT_MULTIVIEW , false ) ;
tonemap . shader . set_variant_enabled ( TONEMAP_MODE_BICUBIC_GLOW_FILTER_1D_LUT_MULTIVIEW , false ) ;
2021-06-26 12:49:25 +02:00
tonemap . shader . set_variant_enabled ( TONEMAP_MODE_SUBPASS_MULTIVIEW , false ) ;
tonemap . shader . set_variant_enabled ( TONEMAP_MODE_SUBPASS_1D_LUT_MULTIVIEW , false ) ;
2021-05-07 15:19:04 +02:00
}
2019-08-27 20:27:35 +02:00
tonemap . shader_version = tonemap . shader . version_create ( ) ;
for ( int i = 0 ; i < TONEMAP_MODE_MAX ; i + + ) {
2021-06-14 03:05:16 +02:00
if ( tonemap . shader . is_variant_enabled ( i ) ) {
tonemap . pipelines [ i ] . setup ( tonemap . shader . version_get_shader ( tonemap . shader_version , i ) , RD : : RENDER_PRIMITIVE_TRIANGLES , RD : : PipelineRasterizationState ( ) , RD : : PipelineMultisampleState ( ) , RD : : PipelineDepthStencilState ( ) , RD : : PipelineColorBlendState : : create_disabled ( ) , 0 ) ;
} else {
tonemap . pipelines [ i ] . clear ( ) ;
}
2019-09-07 03:51:27 +02:00
}
}
2021-07-20 13:40:16 +02:00
if ( prefer_raster_effects ) {
Vector < String > luminance_reduce_modes ;
luminance_reduce_modes . push_back ( " \n #define FIRST_PASS \n " ) ; // LUMINANCE_REDUCE_FRAGMENT_FIRST
luminance_reduce_modes . push_back ( " \n " ) ; // LUMINANCE_REDUCE_FRAGMENT
luminance_reduce_modes . push_back ( " \n #define FINAL_PASS \n " ) ; // LUMINANCE_REDUCE_FRAGMENT_FINAL
luminance_reduce_raster . shader . initialize ( luminance_reduce_modes ) ;
memset ( & luminance_reduce_raster . push_constant , 0 , sizeof ( LuminanceReduceRasterPushConstant ) ) ;
luminance_reduce_raster . shader_version = luminance_reduce_raster . shader . version_create ( ) ;
for ( int i = 0 ; i < LUMINANCE_REDUCE_FRAGMENT_MAX ; i + + ) {
luminance_reduce_raster . pipelines [ i ] . setup ( luminance_reduce_raster . shader . version_get_shader ( luminance_reduce_raster . shader_version , i ) , RD : : RENDER_PRIMITIVE_TRIANGLES , RD : : PipelineRasterizationState ( ) , RD : : PipelineMultisampleState ( ) , RD : : PipelineDepthStencilState ( ) , RD : : PipelineColorBlendState : : create_disabled ( ) , 0 ) ;
}
} else {
2020-01-12 02:26:52 +01:00
// Initialize luminance_reduce
Vector < String > luminance_reduce_modes ;
luminance_reduce_modes . push_back ( " \n #define READ_TEXTURE \n " ) ;
luminance_reduce_modes . push_back ( " \n " ) ;
luminance_reduce_modes . push_back ( " \n #define WRITE_LUMINANCE \n " ) ;
luminance_reduce . shader . initialize ( luminance_reduce_modes ) ;
luminance_reduce . shader_version = luminance_reduce . shader . version_create ( ) ;
for ( int i = 0 ; i < LUMINANCE_REDUCE_MAX ; i + + ) {
luminance_reduce . pipelines [ i ] = RD : : get_singleton ( ) - > compute_pipeline_create ( luminance_reduce . shader . version_get_shader ( luminance_reduce . shader_version , i ) ) ;
}
2021-07-20 13:40:16 +02:00
for ( int i = 0 ; i < LUMINANCE_REDUCE_FRAGMENT_MAX ; i + + ) {
luminance_reduce_raster . pipelines [ i ] . clear ( ) ;
}
2020-01-12 02:26:52 +01:00
}
2019-09-07 03:51:27 +02:00
{
// Initialize copier
Vector < String > copy_modes ;
2020-04-11 19:43:12 +02:00
copy_modes . push_back ( " \n " ) ;
2019-09-07 03:51:27 +02:00
2020-04-11 19:43:12 +02:00
cube_to_dp . shader . initialize ( copy_modes ) ;
2019-09-07 03:51:27 +02:00
2020-04-11 19:43:12 +02:00
cube_to_dp . shader_version = cube_to_dp . shader . version_create ( ) ;
2021-01-24 20:00:20 +01:00
RID shader = cube_to_dp . shader . version_get_shader ( cube_to_dp . shader_version , 0 ) ;
RD : : PipelineDepthStencilState dss ;
dss . enable_depth_test = true ;
dss . depth_compare_operator = RD : : COMPARE_OP_ALWAYS ;
dss . enable_depth_write = true ;
cube_to_dp . pipeline . setup ( shader , RD : : RENDER_PRIMITIVE_TRIANGLES , RD : : PipelineRasterizationState ( ) , RD : : PipelineMultisampleState ( ) , dss , RD : : PipelineColorBlendState ( ) , 0 ) ;
2019-08-27 20:27:35 +02:00
}
2021-07-29 09:43:17 +02:00
// Initialize bokeh
Vector < String > bokeh_modes ;
bokeh_modes . push_back ( " \n #define MODE_GEN_BLUR_SIZE \n " ) ;
bokeh_modes . push_back ( " \n #define MODE_BOKEH_BOX \n #define OUTPUT_WEIGHT \n " ) ;
bokeh_modes . push_back ( " \n #define MODE_BOKEH_BOX \n " ) ;
bokeh_modes . push_back ( " \n #define MODE_BOKEH_HEXAGONAL \n #define OUTPUT_WEIGHT \n " ) ;
bokeh_modes . push_back ( " \n #define MODE_BOKEH_HEXAGONAL \n " ) ;
bokeh_modes . push_back ( " \n #define MODE_BOKEH_CIRCULAR \n #define OUTPUT_WEIGHT \n " ) ;
bokeh_modes . push_back ( " \n #define MODE_COMPOSITE_BOKEH \n " ) ;
2021-07-20 13:40:16 +02:00
if ( prefer_raster_effects ) {
2021-07-29 09:43:17 +02:00
bokeh . raster_shader . initialize ( bokeh_modes ) ;
bokeh . shader_version = bokeh . raster_shader . version_create ( ) ;
const int att_count [ BOKEH_MAX ] = { 1 , 2 , 1 , 2 , 1 , 2 , 1 } ;
for ( int i = 0 ; i < BOKEH_MAX ; i + + ) {
RD : : PipelineColorBlendState blend_state = ( i = = BOKEH_COMPOSITE ) ? RD : : PipelineColorBlendState : : create_blend ( att_count [ i ] ) : RD : : PipelineColorBlendState : : create_disabled ( att_count [ i ] ) ;
bokeh . raster_pipelines [ i ] . setup ( bokeh . raster_shader . version_get_shader ( bokeh . shader_version , i ) , RD : : RENDER_PRIMITIVE_TRIANGLES , RD : : PipelineRasterizationState ( ) , RD : : PipelineMultisampleState ( ) , RD : : PipelineDepthStencilState ( ) , blend_state , 0 ) ;
}
2021-07-20 13:40:16 +02:00
} else {
2021-07-29 09:43:17 +02:00
bokeh . compute_shader . initialize ( bokeh_modes ) ;
bokeh . compute_shader . set_variant_enabled ( BOKEH_GEN_BOKEH_BOX_NOWEIGHT , false ) ;
bokeh . compute_shader . set_variant_enabled ( BOKEH_GEN_BOKEH_HEXAGONAL_NOWEIGHT , false ) ;
2021-08-16 04:18:27 +02:00
bokeh . shader_version = bokeh . compute_shader . version_create ( ) ;
2020-01-13 19:37:24 +01:00
2021-07-29 09:43:17 +02:00
for ( int i = 0 ; i < BOKEH_MAX ; i + + ) {
if ( bokeh . compute_shader . is_variant_enabled ( i ) ) {
bokeh . compute_pipelines [ i ] = RD : : get_singleton ( ) - > compute_pipeline_create ( bokeh . compute_shader . version_get_shader ( bokeh . shader_version , i ) ) ;
}
}
2020-01-13 19:37:24 +01:00
for ( int i = 0 ; i < BOKEH_MAX ; i + + ) {
2021-07-29 09:43:17 +02:00
bokeh . raster_pipelines [ i ] . clear ( ) ;
2020-01-13 19:37:24 +01:00
}
}
2020-01-25 11:18:55 +01:00
{
// Initialize ssao
2020-12-08 06:37:09 +01:00
RD : : SamplerState sampler ;
sampler . mag_filter = RD : : SAMPLER_FILTER_NEAREST ;
sampler . min_filter = RD : : SAMPLER_FILTER_NEAREST ;
sampler . mip_filter = RD : : SAMPLER_FILTER_NEAREST ;
sampler . repeat_u = RD : : SAMPLER_REPEAT_MODE_MIRRORED_REPEAT ;
sampler . repeat_v = RD : : SAMPLER_REPEAT_MODE_MIRRORED_REPEAT ;
sampler . repeat_w = RD : : SAMPLER_REPEAT_MODE_MIRRORED_REPEAT ;
sampler . max_lod = 4 ;
ssao . mirror_sampler = RD : : get_singleton ( ) - > sampler_create ( sampler ) ;
2020-01-25 11:18:55 +01:00
uint32_t pipeline = 0 ;
{
Vector < String > ssao_modes ;
ssao_modes . push_back ( " \n " ) ;
2020-12-08 06:37:09 +01:00
ssao_modes . push_back ( " \n #define USE_HALF_SIZE \n " ) ;
ssao_modes . push_back ( " \n #define GENERATE_MIPS \n " ) ;
ssao_modes . push_back ( " \n #define GENERATE_MIPS \n #define USE_HALF_SIZE " ) ;
ssao_modes . push_back ( " \n #define USE_HALF_BUFFERS \n " ) ;
ssao_modes . push_back ( " \n #define USE_HALF_BUFFERS \n #define USE_HALF_SIZE " ) ;
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
ssao . downsample_shader . initialize ( ssao_modes ) ;
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
ssao . downsample_shader_version = ssao . downsample_shader . version_create ( ) ;
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
for ( int i = 0 ; i < = SSAO_DOWNSAMPLE_HALF_RES_HALF ; i + + ) {
ssao . pipelines [ pipeline ] = RD : : get_singleton ( ) - > compute_pipeline_create ( ssao . downsample_shader . version_get_shader ( ssao . downsample_shader_version , i ) ) ;
2020-10-19 00:27:51 +02:00
pipeline + + ;
}
2020-01-25 11:18:55 +01:00
}
{
Vector < String > ssao_modes ;
2020-12-08 06:37:09 +01:00
2020-01-25 11:18:55 +01:00
ssao_modes . push_back ( " \n " ) ;
2020-12-08 06:37:09 +01:00
ssao_modes . push_back ( " \n #define SSAO_BASE \n " ) ;
ssao_modes . push_back ( " \n #define ADAPTIVE \n " ) ;
2020-01-25 11:18:55 +01:00
2020-10-19 00:27:51 +02:00
ssao . gather_shader . initialize ( ssao_modes ) ;
2020-01-25 11:18:55 +01:00
2020-10-19 00:27:51 +02:00
ssao . gather_shader_version = ssao . gather_shader . version_create ( ) ;
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
for ( int i = SSAO_GATHER ; i < = SSAO_GATHER_ADAPTIVE ; i + + ) {
ssao . pipelines [ pipeline ] = RD : : get_singleton ( ) - > compute_pipeline_create ( ssao . gather_shader . version_get_shader ( ssao . gather_shader_version , i - SSAO_GATHER ) ) ;
2020-01-25 11:18:55 +01:00
pipeline + + ;
}
2020-12-08 06:37:09 +01:00
ssao . gather_constants_buffer = RD : : get_singleton ( ) - > uniform_buffer_create ( sizeof ( SSAOGatherConstants ) ) ;
SSAOGatherConstants gather_constants ;
const int sub_pass_count = 5 ;
for ( int pass = 0 ; pass < 4 ; pass + + ) {
for ( int subPass = 0 ; subPass < sub_pass_count ; subPass + + ) {
int a = pass ;
int b = subPass ;
int spmap [ 5 ] { 0 , 1 , 4 , 3 , 2 } ;
b = spmap [ subPass ] ;
float ca , sa ;
float angle0 = ( float ( a ) + float ( b ) / float ( sub_pass_count ) ) * Math_PI * 0.5f ;
ca = Math : : cos ( angle0 ) ;
sa = Math : : sin ( angle0 ) ;
float scale = 1.0f + ( a - 1.5f + ( b - ( sub_pass_count - 1.0f ) * 0.5f ) / float ( sub_pass_count ) ) * 0.07f ;
gather_constants . rotation_matrices [ pass * 20 + subPass * 4 + 0 ] = scale * ca ;
gather_constants . rotation_matrices [ pass * 20 + subPass * 4 + 1 ] = scale * - sa ;
gather_constants . rotation_matrices [ pass * 20 + subPass * 4 + 2 ] = - scale * sa ;
gather_constants . rotation_matrices [ pass * 20 + subPass * 4 + 3 ] = - scale * ca ;
}
}
2021-01-26 01:52:58 +01:00
RD : : get_singleton ( ) - > buffer_update ( ssao . gather_constants_buffer , 0 , sizeof ( SSAOGatherConstants ) , & gather_constants ) ;
2020-01-25 11:18:55 +01:00
}
{
Vector < String > ssao_modes ;
2020-12-08 06:37:09 +01:00
ssao_modes . push_back ( " \n #define GENERATE_MAP \n " ) ;
ssao_modes . push_back ( " \n #define PROCESS_MAPA \n " ) ;
ssao_modes . push_back ( " \n #define PROCESS_MAPB \n " ) ;
ssao . importance_map_shader . initialize ( ssao_modes ) ;
ssao . importance_map_shader_version = ssao . importance_map_shader . version_create ( ) ;
for ( int i = SSAO_GENERATE_IMPORTANCE_MAP ; i < = SSAO_PROCESS_IMPORTANCE_MAPB ; i + + ) {
ssao . pipelines [ pipeline ] = RD : : get_singleton ( ) - > compute_pipeline_create ( ssao . importance_map_shader . version_get_shader ( ssao . importance_map_shader_version , i - SSAO_GENERATE_IMPORTANCE_MAP ) ) ;
pipeline + + ;
}
ssao . importance_map_load_counter = RD : : get_singleton ( ) - > storage_buffer_create ( sizeof ( uint32_t ) ) ;
int zero [ 1 ] = { 0 } ;
2021-01-26 01:52:58 +01:00
RD : : get_singleton ( ) - > buffer_update ( ssao . importance_map_load_counter , 0 , sizeof ( uint32_t ) , & zero ) ;
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > set_resource_name ( ssao . importance_map_load_counter , " Importance Map Load Counter " ) ;
2020-12-08 06:37:09 +01:00
Vector < RD : : Uniform > uniforms ;
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_STORAGE_BUFFER ;
u . binding = 0 ;
u . ids . push_back ( ssao . importance_map_load_counter ) ;
uniforms . push_back ( u ) ;
}
ssao . counter_uniform_set = RD : : get_singleton ( ) - > uniform_set_create ( uniforms , ssao . importance_map_shader . version_get_shader ( ssao . importance_map_shader_version , 2 ) , 2 ) ;
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > set_resource_name ( ssao . counter_uniform_set , " Load Counter Uniform Set " ) ;
2020-12-08 06:37:09 +01:00
}
{
Vector < String > ssao_modes ;
ssao_modes . push_back ( " \n #define MODE_NON_SMART \n " ) ;
ssao_modes . push_back ( " \n #define MODE_SMART \n " ) ;
ssao_modes . push_back ( " \n #define MODE_WIDE \n " ) ;
2020-01-25 11:18:55 +01:00
2020-10-19 00:27:51 +02:00
ssao . blur_shader . initialize ( ssao_modes ) ;
2020-01-25 11:18:55 +01:00
2020-10-19 00:27:51 +02:00
ssao . blur_shader_version = ssao . blur_shader . version_create ( ) ;
2020-01-25 11:18:55 +01:00
2020-12-08 06:37:09 +01:00
for ( int i = SSAO_BLUR_PASS ; i < = SSAO_BLUR_PASS_WIDE ; i + + ) {
2020-10-19 00:27:51 +02:00
ssao . pipelines [ pipeline ] = RD : : get_singleton ( ) - > compute_pipeline_create ( ssao . blur_shader . version_get_shader ( ssao . blur_shader_version , i - SSAO_BLUR_PASS ) ) ;
2020-04-02 04:24:52 +02:00
2020-01-25 11:18:55 +01:00
pipeline + + ;
}
}
2020-12-08 06:37:09 +01:00
{
Vector < String > ssao_modes ;
ssao_modes . push_back ( " \n #define MODE_NON_SMART \n " ) ;
ssao_modes . push_back ( " \n #define MODE_SMART \n " ) ;
ssao_modes . push_back ( " \n #define MODE_HALF \n " ) ;
ssao . interleave_shader . initialize ( ssao_modes ) ;
ssao . interleave_shader_version = ssao . interleave_shader . version_create ( ) ;
for ( int i = SSAO_INTERLEAVE ; i < = SSAO_INTERLEAVE_HALF ; i + + ) {
ssao . pipelines [ pipeline ] = RD : : get_singleton ( ) - > compute_pipeline_create ( ssao . interleave_shader . version_get_shader ( ssao . interleave_shader_version , i - SSAO_INTERLEAVE ) ) ;
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > set_resource_name ( ssao . pipelines [ pipeline ] , " Interleave Pipeline " + itos ( i ) ) ;
2020-12-08 06:37:09 +01:00
pipeline + + ;
}
}
2020-01-25 11:18:55 +01:00
ERR_FAIL_COND ( pipeline ! = SSAO_MAX ) ;
}
2020-01-27 00:09:40 +01:00
{
2020-02-21 00:27:34 +01:00
// Initialize roughness limiter
2020-01-27 00:09:40 +01:00
Vector < String > shader_modes ;
shader_modes . push_back ( " " ) ;
roughness_limiter . shader . initialize ( shader_modes ) ;
roughness_limiter . shader_version = roughness_limiter . shader . version_create ( ) ;
roughness_limiter . pipeline = RD : : get_singleton ( ) - > compute_pipeline_create ( roughness_limiter . shader . version_get_shader ( roughness_limiter . shader_version , 0 ) ) ;
}
2020-02-21 00:27:34 +01:00
{
//Initialize cubemap downsampler
Vector < String > cubemap_downsampler_modes ;
2020-03-20 01:32:19 +01:00
cubemap_downsampler_modes . push_back ( " " ) ;
2020-02-21 00:27:34 +01:00
2021-07-27 15:33:47 +02:00
if ( prefer_raster_effects ) {
cubemap_downsampler . raster_shader . initialize ( cubemap_downsampler_modes ) ;
cubemap_downsampler . shader_version = cubemap_downsampler . raster_shader . version_create ( ) ;
cubemap_downsampler . raster_pipeline . setup ( cubemap_downsampler . raster_shader . version_get_shader ( cubemap_downsampler . shader_version , 0 ) , RD : : RENDER_PRIMITIVE_TRIANGLES , RD : : PipelineRasterizationState ( ) , RD : : PipelineMultisampleState ( ) , RD : : PipelineDepthStencilState ( ) , RD : : PipelineColorBlendState : : create_disabled ( ) , 0 ) ;
} else {
cubemap_downsampler . compute_shader . initialize ( cubemap_downsampler_modes ) ;
2020-02-21 00:27:34 +01:00
2021-07-27 15:33:47 +02:00
cubemap_downsampler . shader_version = cubemap_downsampler . compute_shader . version_create ( ) ;
cubemap_downsampler . compute_pipeline = RD : : get_singleton ( ) - > compute_pipeline_create ( cubemap_downsampler . compute_shader . version_get_shader ( cubemap_downsampler . shader_version , 0 ) ) ;
cubemap_downsampler . raster_pipeline . clear ( ) ;
}
2020-02-21 00:27:34 +01:00
}
{
// Initialize cubemap filter
2021-02-17 17:44:49 +01:00
filter . use_high_quality = GLOBAL_GET ( " rendering/reflections/sky_reflections/fast_filter_high_quality " ) ;
2020-02-21 00:27:34 +01:00
Vector < String > cubemap_filter_modes ;
cubemap_filter_modes . push_back ( " \n #define USE_HIGH_QUALITY \n " ) ;
cubemap_filter_modes . push_back ( " \n #define USE_LOW_QUALITY \n " ) ;
cubemap_filter_modes . push_back ( " \n #define USE_HIGH_QUALITY \n #define USE_TEXTURE_ARRAY \n " ) ;
cubemap_filter_modes . push_back ( " \n #define USE_LOW_QUALITY \n #define USE_TEXTURE_ARRAY \n " ) ;
if ( filter . use_high_quality ) {
filter . coefficient_buffer = RD : : get_singleton ( ) - > storage_buffer_create ( sizeof ( high_quality_coeffs ) ) ;
2021-01-26 01:52:58 +01:00
RD : : get_singleton ( ) - > buffer_update ( filter . coefficient_buffer , 0 , sizeof ( high_quality_coeffs ) , & high_quality_coeffs [ 0 ] ) ;
2020-02-21 00:27:34 +01:00
} else {
filter . coefficient_buffer = RD : : get_singleton ( ) - > storage_buffer_create ( sizeof ( low_quality_coeffs ) ) ;
2021-01-26 01:52:58 +01:00
RD : : get_singleton ( ) - > buffer_update ( filter . coefficient_buffer , 0 , sizeof ( low_quality_coeffs ) , & low_quality_coeffs [ 0 ] ) ;
2020-02-21 00:27:34 +01:00
}
2021-07-27 15:33:47 +02:00
if ( prefer_raster_effects ) {
filter . raster_shader . initialize ( cubemap_filter_modes ) ;
// array variants are not supported in raster
filter . raster_shader . set_variant_enabled ( FILTER_MODE_HIGH_QUALITY_ARRAY , false ) ;
filter . raster_shader . set_variant_enabled ( FILTER_MODE_LOW_QUALITY_ARRAY , false ) ;
2021-07-29 09:43:17 +02:00
filter . shader_version = filter . raster_shader . version_create ( ) ;
2021-07-27 15:33:47 +02:00
for ( int i = 0 ; i < FILTER_MODE_MAX ; i + + ) {
if ( filter . raster_shader . is_variant_enabled ( i ) ) {
filter . raster_pipelines [ i ] . setup ( filter . raster_shader . version_get_shader ( filter . shader_version , i ) , RD : : RENDER_PRIMITIVE_TRIANGLES , RD : : PipelineRasterizationState ( ) , RD : : PipelineMultisampleState ( ) , RD : : PipelineDepthStencilState ( ) , RD : : PipelineColorBlendState : : create_disabled ( ) , 0 ) ;
} else {
filter . raster_pipelines [ i ] . clear ( ) ;
}
}
Vector < RD : : Uniform > uniforms ;
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_STORAGE_BUFFER ;
u . binding = 0 ;
u . ids . push_back ( filter . coefficient_buffer ) ;
uniforms . push_back ( u ) ;
}
filter . uniform_set = RD : : get_singleton ( ) - > uniform_set_create ( uniforms , filter . raster_shader . version_get_shader ( filter . shader_version , filter . use_high_quality ? 0 : 1 ) , 1 ) ;
} else {
filter . compute_shader . initialize ( cubemap_filter_modes ) ;
filter . shader_version = filter . compute_shader . version_create ( ) ;
for ( int i = 0 ; i < FILTER_MODE_MAX ; i + + ) {
filter . compute_pipelines [ i ] = RD : : get_singleton ( ) - > compute_pipeline_create ( filter . compute_shader . version_get_shader ( filter . shader_version , i ) ) ;
filter . raster_pipelines [ i ] . clear ( ) ;
}
Vector < RD : : Uniform > uniforms ;
{
RD : : Uniform u ;
u . uniform_type = RD : : UNIFORM_TYPE_STORAGE_BUFFER ;
u . binding = 0 ;
u . ids . push_back ( filter . coefficient_buffer ) ;
uniforms . push_back ( u ) ;
}
filter . uniform_set = RD : : get_singleton ( ) - > uniform_set_create ( uniforms , filter . compute_shader . version_get_shader ( filter . shader_version , filter . use_high_quality ? 0 : 1 ) , 1 ) ;
2020-02-21 00:27:34 +01:00
}
}
2020-04-02 04:24:52 +02:00
{
Vector < String > specular_modes ;
specular_modes . push_back ( " \n #define MODE_MERGE \n " ) ;
specular_modes . push_back ( " \n #define MODE_MERGE \n #define MODE_SSR \n " ) ;
specular_modes . push_back ( " \n " ) ;
specular_modes . push_back ( " \n #define MODE_SSR \n " ) ;
specular_merge . shader . initialize ( specular_modes ) ;
specular_merge . shader_version = specular_merge . shader . version_create ( ) ;
//use additive
RD : : PipelineColorBlendState : : Attachment ba ;
ba . enable_blend = true ;
ba . src_color_blend_factor = RD : : BLEND_FACTOR_ONE ;
ba . dst_color_blend_factor = RD : : BLEND_FACTOR_ONE ;
ba . src_alpha_blend_factor = RD : : BLEND_FACTOR_ONE ;
ba . dst_alpha_blend_factor = RD : : BLEND_FACTOR_ONE ;
ba . color_blend_op = RD : : BLEND_OP_ADD ;
ba . alpha_blend_op = RD : : BLEND_OP_ADD ;
RD : : PipelineColorBlendState blend_additive ;
blend_additive . attachments . push_back ( ba ) ;
for ( int i = 0 ; i < SPECULAR_MERGE_MAX ; i + + ) {
RD : : PipelineColorBlendState blend_state ;
if ( i = = SPECULAR_MERGE_ADDITIVE_ADD | | i = = SPECULAR_MERGE_ADDITIVE_SSR ) {
blend_state = blend_additive ;
} else {
blend_state = RD : : PipelineColorBlendState : : create_disabled ( ) ;
}
specular_merge . pipelines [ i ] . setup ( specular_merge . shader . version_get_shader ( specular_merge . shader_version , i ) , RD : : RENDER_PRIMITIVE_TRIANGLES , RD : : PipelineRasterizationState ( ) , RD : : PipelineMultisampleState ( ) , RD : : PipelineDepthStencilState ( ) , blend_state , 0 ) ;
}
}
{
Vector < String > ssr_modes ;
ssr_modes . push_back ( " \n " ) ;
ssr_modes . push_back ( " \n #define MODE_ROUGH \n " ) ;
ssr . shader . initialize ( ssr_modes ) ;
ssr . shader_version = ssr . shader . version_create ( ) ;
for ( int i = 0 ; i < SCREEN_SPACE_REFLECTION_MAX ; i + + ) {
ssr . pipelines [ i ] = RD : : get_singleton ( ) - > compute_pipeline_create ( ssr . shader . version_get_shader ( ssr . shader_version , i ) ) ;
}
}
{
Vector < String > ssr_filter_modes ;
ssr_filter_modes . push_back ( " \n " ) ;
ssr_filter_modes . push_back ( " \n #define VERTICAL_PASS \n " ) ;
ssr_filter . shader . initialize ( ssr_filter_modes ) ;
ssr_filter . shader_version = ssr_filter . shader . version_create ( ) ;
for ( int i = 0 ; i < SCREEN_SPACE_REFLECTION_FILTER_MAX ; i + + ) {
ssr_filter . pipelines [ i ] = RD : : get_singleton ( ) - > compute_pipeline_create ( ssr_filter . shader . version_get_shader ( ssr_filter . shader_version , i ) ) ;
}
}
{
Vector < String > ssr_scale_modes ;
ssr_scale_modes . push_back ( " \n " ) ;
ssr_scale . shader . initialize ( ssr_scale_modes ) ;
ssr_scale . shader_version = ssr_scale . shader . version_create ( ) ;
ssr_scale . pipeline = RD : : get_singleton ( ) - > compute_pipeline_create ( ssr_scale . shader . version_get_shader ( ssr_scale . shader_version , 0 ) ) ;
}
2020-04-04 04:42:26 +02:00
{
Vector < String > sss_modes ;
sss_modes . push_back ( " \n #define USE_11_SAMPLES \n " ) ;
sss_modes . push_back ( " \n #define USE_17_SAMPLES \n " ) ;
sss_modes . push_back ( " \n #define USE_25_SAMPLES \n " ) ;
sss . shader . initialize ( sss_modes ) ;
sss . shader_version = sss . shader . version_create ( ) ;
for ( int i = 0 ; i < sss_modes . size ( ) ; i + + ) {
sss . pipelines [ i ] = RD : : get_singleton ( ) - > compute_pipeline_create ( sss . shader . version_get_shader ( sss . shader_version , i ) ) ;
}
}
2020-06-25 15:33:28 +02:00
{
Vector < String > resolve_modes ;
resolve_modes . push_back ( " \n #define MODE_RESOLVE_GI \n " ) ;
2021-06-05 00:47:26 +02:00
resolve_modes . push_back ( " \n #define MODE_RESOLVE_GI \n #define VOXEL_GI_RESOLVE \n " ) ;
2021-07-05 19:48:23 +02:00
resolve_modes . push_back ( " \n #define MODE_RESOLVE_DEPTH \n " ) ;
2020-06-25 15:33:28 +02:00
resolve . shader . initialize ( resolve_modes ) ;
resolve . shader_version = resolve . shader . version_create ( ) ;
for ( int i = 0 ; i < RESOLVE_MODE_MAX ; i + + ) {
resolve . pipelines [ i ] = RD : : get_singleton ( ) - > compute_pipeline_create ( resolve . shader . version_get_shader ( resolve . shader_version , i ) ) ;
}
}
2020-08-19 15:38:24 +02:00
{
Vector < String > sort_modes ;
sort_modes . push_back ( " \n #define MODE_SORT_BLOCK \n " ) ;
sort_modes . push_back ( " \n #define MODE_SORT_STEP \n " ) ;
sort_modes . push_back ( " \n #define MODE_SORT_INNER \n " ) ;
sort . shader . initialize ( sort_modes ) ;
sort . shader_version = sort . shader . version_create ( ) ;
for ( int i = 0 ; i < SORT_MODE_MAX ; i + + ) {
sort . pipelines [ i ] = RD : : get_singleton ( ) - > compute_pipeline_create ( sort . shader . version_get_shader ( sort . shader_version , i ) ) ;
}
}
2019-07-27 15:23:24 +02:00
RD : : SamplerState sampler ;
sampler . mag_filter = RD : : SAMPLER_FILTER_LINEAR ;
sampler . min_filter = RD : : SAMPLER_FILTER_LINEAR ;
sampler . max_lod = 0 ;
default_sampler = RD : : get_singleton ( ) - > sampler_create ( sampler ) ;
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > set_resource_name ( default_sampler , " Default Linear Sampler " ) ;
2019-07-27 15:23:24 +02:00
2020-01-10 01:40:26 +01:00
sampler . min_filter = RD : : SAMPLER_FILTER_LINEAR ;
sampler . mip_filter = RD : : SAMPLER_FILTER_LINEAR ;
sampler . max_lod = 1e20 ;
default_mipmap_sampler = RD : : get_singleton ( ) - > sampler_create ( sampler ) ;
2021-01-24 07:21:54 +01:00
RD : : get_singleton ( ) - > set_resource_name ( default_mipmap_sampler , " Default MipMap Sampler " ) ;
2020-01-10 01:40:26 +01:00
2019-07-27 15:23:24 +02:00
{ //create index array for copy shaders
2020-02-17 22:06:54 +01:00
Vector < uint8_t > pv ;
2019-07-27 15:23:24 +02:00
pv . resize ( 6 * 4 ) ;
{
2020-02-17 22:06:54 +01:00
uint8_t * w = pv . ptrw ( ) ;
int * p32 = ( int * ) w ;
2019-07-27 15:23:24 +02:00
p32 [ 0 ] = 0 ;
p32 [ 1 ] = 1 ;
p32 [ 2 ] = 2 ;
p32 [ 3 ] = 0 ;
p32 [ 4 ] = 2 ;
p32 [ 5 ] = 3 ;
}
index_buffer = RD : : get_singleton ( ) - > index_buffer_create ( 6 , RenderingDevice : : INDEX_BUFFER_FORMAT_UINT32 , pv ) ;
index_array = RD : : get_singleton ( ) - > index_array_create ( index_buffer , 0 , 6 ) ;
}
}
2020-12-04 19:26:24 +01:00
EffectsRD : : ~ EffectsRD ( ) {
2020-02-28 18:06:22 +01:00
if ( RD : : get_singleton ( ) - > uniform_set_is_valid ( filter . image_uniform_set ) ) {
RD : : get_singleton ( ) - > free ( filter . image_uniform_set ) ;
}
2020-03-02 19:17:20 +01:00
if ( RD : : get_singleton ( ) - > uniform_set_is_valid ( filter . uniform_set ) ) {
2020-02-28 18:06:22 +01:00
RD : : get_singleton ( ) - > free ( filter . uniform_set ) ;
}
2019-07-29 23:19:31 +02:00
RD : : get_singleton ( ) - > free ( default_sampler ) ;
2020-02-28 00:01:49 +01:00
RD : : get_singleton ( ) - > free ( default_mipmap_sampler ) ;
2019-07-29 23:19:31 +02:00
RD : : get_singleton ( ) - > free ( index_buffer ) ; //array gets freed as dependency
2020-02-28 18:06:22 +01:00
RD : : get_singleton ( ) - > free ( filter . coefficient_buffer ) ;
2020-04-04 17:48:30 +02:00
2020-12-08 06:37:09 +01:00
RD : : get_singleton ( ) - > free ( ssao . mirror_sampler ) ;
RD : : get_singleton ( ) - > free ( ssao . gather_constants_buffer ) ;
RD : : get_singleton ( ) - > free ( ssao . importance_map_load_counter ) ;
2021-07-20 13:40:16 +02:00
if ( prefer_raster_effects ) {
blur_raster . shader . version_free ( blur_raster . shader_version ) ;
2021-07-29 09:43:17 +02:00
bokeh . raster_shader . version_free ( blur_raster . shader_version ) ;
2021-07-20 13:40:16 +02:00
luminance_reduce_raster . shader . version_free ( luminance_reduce_raster . shader_version ) ;
2021-07-27 15:33:47 +02:00
roughness . raster_shader . version_free ( roughness . shader_version ) ;
cubemap_downsampler . raster_shader . version_free ( cubemap_downsampler . shader_version ) ;
filter . raster_shader . version_free ( filter . shader_version ) ;
2021-07-20 13:40:16 +02:00
} else {
2021-07-29 09:43:17 +02:00
bokeh . compute_shader . version_free ( bokeh . shader_version ) ;
2021-07-20 13:40:16 +02:00
luminance_reduce . shader . version_free ( luminance_reduce . shader_version ) ;
2021-07-27 15:33:47 +02:00
roughness . compute_shader . version_free ( roughness . shader_version ) ;
cubemap_downsampler . compute_shader . version_free ( cubemap_downsampler . shader_version ) ;
filter . compute_shader . version_free ( filter . shader_version ) ;
2021-07-20 13:40:16 +02:00
}
2020-04-13 11:39:44 +02:00
copy . shader . version_free ( copy . shader_version ) ;
copy_to_fb . shader . version_free ( copy_to_fb . shader_version ) ;
2020-04-11 19:43:12 +02:00
cube_to_dp . shader . version_free ( cube_to_dp . shader_version ) ;
2020-06-27 15:08:20 +02:00
resolve . shader . version_free ( resolve . shader_version ) ;
2020-04-04 17:48:30 +02:00
roughness_limiter . shader . version_free ( roughness_limiter . shader_version ) ;
2020-10-12 09:47:12 +02:00
sort . shader . version_free ( sort . shader_version ) ;
2020-04-04 17:48:30 +02:00
specular_merge . shader . version_free ( specular_merge . shader_version ) ;
2020-10-19 00:27:51 +02:00
ssao . blur_shader . version_free ( ssao . blur_shader_version ) ;
ssao . gather_shader . version_free ( ssao . gather_shader_version ) ;
2020-12-08 06:37:09 +01:00
ssao . downsample_shader . version_free ( ssao . downsample_shader_version ) ;
ssao . interleave_shader . version_free ( ssao . interleave_shader_version ) ;
ssao . importance_map_shader . version_free ( ssao . importance_map_shader_version ) ;
2020-04-04 04:42:26 +02:00
ssr . shader . version_free ( ssr . shader_version ) ;
ssr_filter . shader . version_free ( ssr_filter . shader_version ) ;
2020-04-04 17:48:30 +02:00
ssr_scale . shader . version_free ( ssr_scale . shader_version ) ;
2020-04-04 04:42:26 +02:00
sss . shader . version_free ( sss . shader_version ) ;
2020-04-04 17:48:30 +02:00
tonemap . shader . version_free ( tonemap . shader_version ) ;
2019-07-27 15:23:24 +02:00
}