Merge pull request #36679 from clayjohn/VULKAN-mem-leak

Remove minimum size for shadow atlas
This commit is contained in:
Rémi Verschelde 2020-02-29 23:32:16 +01:00 committed by GitHub
commit 93dd3d29d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -886,7 +886,6 @@ void RasterizerSceneRD::shadow_atlas_set_size(RID p_atlas, int p_size) {
ERR_FAIL_COND(!shadow_atlas);
ERR_FAIL_COND(p_size < 0);
p_size = next_power_of_2(p_size);
p_size = MAX(p_size, 1 << roughness_layers); // TODO: use a number related to shadows rather than reflections
if (p_size == shadow_atlas->size)
return;