소스 검색

Allow building X11 without Vulkan

This limit was likely introduced when Vulkan was the only option.
Riteo 2 년 전
부모
커밋
3960c6b8f9
1개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 3
      platform/linuxbsd/detect.py

+ 0 - 3
platform/linuxbsd/detect.py

@@ -339,9 +339,6 @@ def configure(env: "Environment"):
     env.Prepend(CPPPATH=["#platform/linuxbsd"])
 
     if env["x11"]:
-        if not env["vulkan"]:
-            print("Error: X11 support requires vulkan=yes")
-            env.Exit(255)
         env.Append(CPPDEFINES=["X11_ENABLED"])
 
     env.Append(CPPDEFINES=["UNIX_ENABLED"])