2023-02-11 03:45:11 +08:00
|
|
|
find_package(ZLIB REQUIRED)
|
|
|
|
|
|
|
|
list(APPEND ANGLE_SOURCES
|
|
|
|
${libangle_gpu_info_util_mac_sources}
|
|
|
|
${libangle_gpu_info_util_sources}
|
|
|
|
${libangle_mac_sources}
|
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND ANGLEGLESv2_LIBRARIES
|
2023-08-03 00:08:34 +08:00
|
|
|
"-framework CoreGraphics"
|
|
|
|
"-framework Foundation"
|
|
|
|
"-framework IOKit"
|
|
|
|
"-framework IOSurface"
|
|
|
|
"-framework Quartz"
|
2023-02-11 03:45:11 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# Metal backend
|
|
|
|
if(USE_METAL)
|
|
|
|
list(APPEND ANGLE_SOURCES
|
|
|
|
${_metal_backend_sources}
|
|
|
|
|
|
|
|
${angle_translator_lib_metal_sources}
|
|
|
|
|
|
|
|
${angle_glslang_wrapper}
|
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND ANGLE_DEFINITIONS
|
|
|
|
ANGLE_ENABLE_METAL
|
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND ANGLEGLESv2_LIBRARIES
|
2023-08-03 00:08:34 +08:00
|
|
|
"-framework Metal"
|
2023-02-11 03:45:11 +08:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# OpenGL backend
|
|
|
|
if(USE_OPENGL)
|
2023-05-03 05:47:47 +08:00
|
|
|
list(APPEND ANGLE_SOURCES
|
|
|
|
${angle_translator_glsl_base_sources}
|
|
|
|
${angle_translator_glsl_sources}
|
|
|
|
${angle_translator_apple_sources}
|
|
|
|
)
|
2023-02-11 03:45:11 +08:00
|
|
|
# Enable GLSL compiler output.
|
2023-05-03 05:47:47 +08:00
|
|
|
list(APPEND ANGLE_DEFINITIONS ANGLE_ENABLE_GLSL ANGLE_ENABLE_GL_DESKTOP_BACKEND ANGLE_ENABLE_APPLE_WORKAROUNDS)
|
2023-02-11 03:45:11 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(USE_ANGLE_EGL OR ENABLE_WEBGL)
|
|
|
|
list(APPEND ANGLE_SOURCES
|
|
|
|
${_gl_backend_sources}
|
|
|
|
|
|
|
|
${libangle_gl_egl_dl_sources}
|
|
|
|
${libangle_gl_egl_sources}
|
|
|
|
${libangle_gl_sources}
|
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND ANGLE_DEFINITIONS
|
|
|
|
ANGLE_ENABLE_OPENGL
|
|
|
|
)
|
|
|
|
endif()
|