Merge pull request #58614 from Calinou/ssr-roughness-quality-enum-fix-typo
Fix typo in SSR roughness quality enum value names
This commit is contained in:
commit
e7176e6c85
6 changed files with 23 additions and 19 deletions
|
@ -4146,13 +4146,17 @@
|
|||
<constant name="ENV_TONE_MAPPER_ACES" value="3" enum="EnvironmentToneMapper">
|
||||
Use the ACES tonemapper.
|
||||
</constant>
|
||||
<constant name="ENV_SSR_ROUGNESS_QUALITY_DISABLED" value="0" enum="EnvironmentSSRRoughnessQuality">
|
||||
<constant name="ENV_SSR_ROUGHNESS_QUALITY_DISABLED" value="0" enum="EnvironmentSSRRoughnessQuality">
|
||||
Lowest quality of roughness filter for screen-space reflections. Rough materials will not have blurrier screen-space reflections compared to smooth (non-rough) materials. This is the fastest option.
|
||||
</constant>
|
||||
<constant name="ENV_SSR_ROUGNESS_QUALITY_LOW" value="1" enum="EnvironmentSSRRoughnessQuality">
|
||||
<constant name="ENV_SSR_ROUGHNESS_QUALITY_LOW" value="1" enum="EnvironmentSSRRoughnessQuality">
|
||||
Low quality of roughness filter for screen-space reflections.
|
||||
</constant>
|
||||
<constant name="ENV_SSR_ROUGNESS_QUALITY_MEDIUM" value="2" enum="EnvironmentSSRRoughnessQuality">
|
||||
<constant name="ENV_SSR_ROUGHNESS_QUALITY_MEDIUM" value="2" enum="EnvironmentSSRRoughnessQuality">
|
||||
Medium quality of roughness filter for screen-space reflections.
|
||||
</constant>
|
||||
<constant name="ENV_SSR_ROUGNESS_QUALITY_HIGH" value="3" enum="EnvironmentSSRRoughnessQuality">
|
||||
<constant name="ENV_SSR_ROUGHNESS_QUALITY_HIGH" value="3" enum="EnvironmentSSRRoughnessQuality">
|
||||
High quality of roughness filter for screen-space reflections. This is the slowest option.
|
||||
</constant>
|
||||
<constant name="ENV_SSAO_QUALITY_VERY_LOW" value="0" enum="EnvironmentSSAOQuality">
|
||||
Lowest quality of screen-space ambient occlusion.
|
||||
|
|
|
@ -646,13 +646,13 @@ void EffectsRD::screen_space_reflection(RID p_diffuse, RID p_normal_roughness, R
|
|||
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_bind_compute_pipeline(compute_list, ssr.pipelines[(p_roughness_quality != RS::ENV_SSR_ROUGHNESS_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) {
|
||||
if (p_roughness_quality != RS::ENV_SSR_ROUGHNESS_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);
|
||||
|
@ -663,7 +663,7 @@ void EffectsRD::screen_space_reflection(RID p_diffuse, RID p_normal_roughness, R
|
|||
RD::get_singleton()->compute_list_dispatch_threads(compute_list, p_screen_size.width, p_screen_size.height, 1);
|
||||
}
|
||||
|
||||
if (p_roughness_quality != RS::ENV_SSR_ROUGNESS_QUALITY_DISABLED) {
|
||||
if (p_roughness_quality != RS::ENV_SSR_ROUGHNESS_QUALITY_DISABLED) {
|
||||
//blur
|
||||
|
||||
RD::get_singleton()->compute_list_add_barrier(compute_list);
|
||||
|
@ -675,10 +675,10 @@ void EffectsRD::screen_space_reflection(RID p_diffuse, RID p_normal_roughness, R
|
|||
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) {
|
||||
if (p_roughness_quality == RS::ENV_SSR_ROUGHNESS_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) {
|
||||
} else if (p_roughness_quality == RS::ENV_SSR_ROUGHNESS_QUALITY_MEDIUM) {
|
||||
ssr_filter.push_constant.steps = p_max_steps / 2;
|
||||
ssr_filter.push_constant.increment = 2;
|
||||
} else {
|
||||
|
|
|
@ -1980,7 +1980,7 @@ void RendererSceneRenderRD::_process_ssr(RID p_render_buffers, RID p_dest_frameb
|
|||
rb->ssr.normal_scaled = RD::get_singleton()->texture_create(tf, RD::TextureView());
|
||||
}
|
||||
|
||||
if (ssr_roughness_quality != RS::ENV_SSR_ROUGNESS_QUALITY_DISABLED && !rb->ssr.blur_radius[0].is_valid()) {
|
||||
if (ssr_roughness_quality != RS::ENV_SSR_ROUGHNESS_QUALITY_DISABLED && !rb->ssr.blur_radius[0].is_valid()) {
|
||||
RD::TextureFormat tf;
|
||||
tf.format = RD::DATA_FORMAT_R8_UNORM;
|
||||
tf.width = rb->internal_width / 2;
|
||||
|
|
|
@ -428,7 +428,7 @@ private:
|
|||
|
||||
bool glow_bicubic_upscale = false;
|
||||
bool glow_high_quality = false;
|
||||
RS::EnvironmentSSRRoughnessQuality ssr_roughness_quality = RS::ENV_SSR_ROUGNESS_QUALITY_LOW;
|
||||
RS::EnvironmentSSRRoughnessQuality ssr_roughness_quality = RS::ENV_SSR_ROUGHNESS_QUALITY_LOW;
|
||||
|
||||
mutable RID_Owner<RendererSceneEnvironmentRD, true> environment_owner;
|
||||
|
||||
|
|
|
@ -2371,10 +2371,10 @@ void RenderingServer::_bind_methods() {
|
|||
BIND_ENUM_CONSTANT(ENV_TONE_MAPPER_FILMIC);
|
||||
BIND_ENUM_CONSTANT(ENV_TONE_MAPPER_ACES);
|
||||
|
||||
BIND_ENUM_CONSTANT(ENV_SSR_ROUGNESS_QUALITY_DISABLED);
|
||||
BIND_ENUM_CONSTANT(ENV_SSR_ROUGNESS_QUALITY_LOW);
|
||||
BIND_ENUM_CONSTANT(ENV_SSR_ROUGNESS_QUALITY_MEDIUM);
|
||||
BIND_ENUM_CONSTANT(ENV_SSR_ROUGNESS_QUALITY_HIGH);
|
||||
BIND_ENUM_CONSTANT(ENV_SSR_ROUGHNESS_QUALITY_DISABLED);
|
||||
BIND_ENUM_CONSTANT(ENV_SSR_ROUGHNESS_QUALITY_LOW);
|
||||
BIND_ENUM_CONSTANT(ENV_SSR_ROUGHNESS_QUALITY_MEDIUM);
|
||||
BIND_ENUM_CONSTANT(ENV_SSR_ROUGHNESS_QUALITY_HIGH);
|
||||
|
||||
BIND_ENUM_CONSTANT(ENV_SSAO_QUALITY_VERY_LOW);
|
||||
BIND_ENUM_CONSTANT(ENV_SSAO_QUALITY_LOW);
|
||||
|
|
|
@ -1009,10 +1009,10 @@ public:
|
|||
virtual void environment_set_ssr(RID p_env, bool p_enable, int p_max_steps, float p_fade_in, float p_fade_out, float p_depth_tolerance) = 0;
|
||||
|
||||
enum EnvironmentSSRRoughnessQuality {
|
||||
ENV_SSR_ROUGNESS_QUALITY_DISABLED,
|
||||
ENV_SSR_ROUGNESS_QUALITY_LOW,
|
||||
ENV_SSR_ROUGNESS_QUALITY_MEDIUM,
|
||||
ENV_SSR_ROUGNESS_QUALITY_HIGH,
|
||||
ENV_SSR_ROUGHNESS_QUALITY_DISABLED,
|
||||
ENV_SSR_ROUGHNESS_QUALITY_LOW,
|
||||
ENV_SSR_ROUGHNESS_QUALITY_MEDIUM,
|
||||
ENV_SSR_ROUGHNESS_QUALITY_HIGH,
|
||||
};
|
||||
|
||||
virtual void environment_set_ssr_roughness_quality(EnvironmentSSRRoughnessQuality p_quality) = 0;
|
||||
|
|
Loading…
Reference in a new issue