From a1a5570e9735cb3ead0149b26d00eb4d6ade744f Mon Sep 17 00:00:00 2001 From: Yuri Kunde Schlesner Date: Sun, 30 Aug 2015 03:37:42 -0300 Subject: 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. --- src/video_core/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/video_core/CMakeLists.txt') diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt index 183709d8b..8c9d76ab4 100644 --- a/src/video_core/CMakeLists.txt +++ b/src/video_core/CMakeLists.txt @@ -1,5 +1,4 @@ set(SRCS - renderer_opengl/generated/gl_3_2_core.c renderer_opengl/gl_rasterizer.cpp renderer_opengl/gl_rasterizer_cache.cpp renderer_opengl/gl_shader_util.cpp @@ -19,7 +18,6 @@ set(SRCS set(HEADERS debug_utils/debug_utils.h - renderer_opengl/generated/gl_3_2_core.h renderer_opengl/gl_rasterizer.h renderer_opengl/gl_rasterizer_cache.h renderer_opengl/gl_resource_manager.h @@ -53,6 +51,7 @@ endif() create_directory_groups(${SRCS} ${HEADERS}) add_library(video_core STATIC ${SRCS} ${HEADERS}) +target_link_libraries(video_core glad) if (PNG_FOUND) target_link_libraries(video_core ${PNG_LIBRARIES}) -- cgit v1.2.3