Quellcode durchsuchen

Merge pull request #37629 from lupoDharkael/noise-unref

NoiseTexture: prevent race condition because of Ref::unref()
Rémi Verschelde vor 5 Jahren
Ursprung
Commit
56bee78b6e
1 geänderte Dateien mit 8 neuen und 3 gelöschten Zeilen
  1. 8 3
      modules/opensimplex/noise_texture.cpp

+ 8 - 3
modules/opensimplex/noise_texture.cpp

@@ -137,14 +137,19 @@ void NoiseTexture::_queue_update() {
 
 Ref<Image> NoiseTexture::_generate_texture() {
 
-	if (noise.is_null()) return Ref<Image>();
+	// Prevent memdelete due to unref() on other thread.
+	Ref<OpenSimplexNoise> ref_noise = noise;
+
+	if (ref_noise.is_null()) {
+		return Ref<Image>();
+	}
 
 	Ref<Image> image;
 
 	if (seamless) {
-		image = noise->get_seamless_image(size.x);
+		image = ref_noise->get_seamless_image(size.x);
 	} else {
-		image = noise->get_image(size.x, size.y);
+		image = ref_noise->get_image(size.x, size.y);
 	}
 
 	if (as_normalmap) {