mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-10 18:48:01 -05:00
Replace the previous OpenGL loader with a glad-generated 3.3 one
The main advantage of switching to glad from glLoadGen is that, apart from being actively maintained, it supports a customizable entrypoint loader function, which makes it possible to also support OpenGL ES.
This commit is contained in:
11
externals/glad/CMakeLists.txt
vendored
Normal file
11
externals/glad/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
set(SRCS
|
||||
src/glad.c
|
||||
)
|
||||
set(HEADERS
|
||||
include/KHR/khrplatform.h
|
||||
include/glad/glad.h
|
||||
)
|
||||
|
||||
create_directory_groups(${SRCS} ${HEADERS})
|
||||
add_library(glad STATIC ${SRCS} ${HEADERS})
|
||||
target_include_directories(glad PUBLIC "include/")
|
Reference in New Issue
Block a user