瀏覽代碼

Fix crash on canvas with BG_MODE_KEEP, closes #19590

Juan Linietsky 6 年之前
父節點
當前提交
d5ad1ca1ae
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      drivers/gles3/rasterizer_scene_gles3.cpp

+ 3 - 1
drivers/gles3/rasterizer_scene_gles3.cpp

@@ -4297,8 +4297,10 @@ void RasterizerSceneGLES3::render_scene(const Transform &p_cam_transform, const
 		glClearBufferfv(GL_COLOR, 0, clear_color.components); // specular
 	}
 
+	VS::EnvironmentBG bg_mode = (!env || (probe && env->bg_mode == VS::ENV_BG_CANVAS)) ? VS::ENV_BG_CLEAR_COLOR : env->bg_mode;
+
 	if (env) {
-		switch (env->bg_mode) {
+		switch (bg_mode) {
 			case VS::ENV_BG_COLOR_SKY:
 			case VS::ENV_BG_SKY: