Merge pull request #36679 from clayjohn/VULKAN-mem-leak
Remove minimum size for shadow atlas
This commit is contained in:
commit
93dd3d29d2
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue