Merge pull request #81716 from akien-mga/web-disable-raycast-embree

Web: Disable raycast module by default (no occlusion culling)
This commit is contained in:
Rémi Verschelde
2023-09-22 22:03:55 +02:00
4 changed files with 5 additions and 0 deletions

View File

@ -60,6 +60,8 @@ def get_flags():
("target", "template_debug"),
("builtin_pcre2_with_jit", False),
("vulkan", False),
# Embree is heavy and requires too much memory (GH-70621).
("module_raycast_enabled", False),
# Use -Os to prioritize optimizing for reduced file size. This is
# particularly valuable for the web platform because it directly
# decreases download time.