diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2020-07-01 16:28:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-01 16:28:48 +0200 |
| commit | 9000e596502c45b5611768efcd30e76556209717 (patch) | |
| tree | 486b63209cbade48aadd9792710d4b685c688928 /servers/rendering/rasterizer.h | |
| parent | 2fc3c5bb9f0250cb5caecb79f8dc00c100d1e189 (diff) | |
| parent | 372136fe75e9f042d2284bae46d2879950f4d399 (diff) | |
| download | redot-engine-9000e596502c45b5611768efcd30e76556209717.tar.gz | |
Merge pull request #40016 from akien-mga/environment-code-cleanup
Environment: Refactor code for readability + more
Diffstat (limited to 'servers/rendering/rasterizer.h')
| -rw-r--r-- | servers/rendering/rasterizer.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/servers/rendering/rasterizer.h b/servers/rendering/rasterizer.h index 1027034902..348fc423bb 100644 --- a/servers/rendering/rasterizer.h +++ b/servers/rendering/rasterizer.h @@ -32,10 +32,9 @@ #define RASTERIZER_H #include "core/math/camera_matrix.h" -#include "servers/rendering_server.h" - #include "core/pair.h" #include "core/self_list.h" +#include "servers/rendering_server.h" class RasterizerScene { public: @@ -96,7 +95,7 @@ public: virtual void environment_set_ssao_quality(RS::EnvironmentSSAOQuality p_quality, bool p_half_size) = 0; - virtual void environment_set_sdfgi(RID p_env, bool p_enable, RS::EnvironmentSDFGICascades p_cascades, float p_min_cell_size, RS::EnvironmentSDFGIYScale p_y_scale, bool p_use_occlusion, bool p_use_multibounce, bool p_read_sky, bool p_enhance_ssr, float p_energy, float p_normal_bias, float p_probe_bias) = 0; + virtual void environment_set_sdfgi(RID p_env, bool p_enable, RS::EnvironmentSDFGICascades p_cascades, float p_min_cell_size, RS::EnvironmentSDFGIYScale p_y_scale, bool p_use_occlusion, bool p_use_multibounce, bool p_read_sky, float p_energy, float p_normal_bias, float p_probe_bias) = 0; virtual void environment_set_sdfgi_ray_count(RS::EnvironmentSDFGIRayCount p_ray_count) = 0; virtual void environment_set_sdfgi_frames_to_converge(RS::EnvironmentSDFGIFramesToConverge p_frames) = 0; |
