Changeset 184954 in webkit
- Timestamp:
- May 28, 2015, 4:30:52 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 9 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r184928 r184954 1 2015-05-28 Carlos Alberto Lopez Perez <clopez@igalia.com> 2 3 [CMake] Improve detection and usage of GL/GLES/EGL libraries. 4 https://bugs.webkit.org/show_bug.cgi?id=145408 5 6 Reviewed by Carlos Garcia Campos. 7 8 * Source/cmake/FindEGL.cmake: Improve detection of EGL libraries. 9 * Source/cmake/FindGLES.cmake: Removed. It was used by the EGL port. 10 Remove it and make the EGL port use the improved FindOpenGLES2.cmake 11 instead. 12 * Source/cmake/FindOpenGL.cmake: Added. Add module to detect OpenGL 13 libraries. Detect also GLX libraries. 14 * Source/cmake/FindOpenGLES2.cmake: Improve detection of OpenGLES-v2 15 libraries. Use find_path() to get the include path. 16 * Source/cmake/OptionsEfl.cmake: Use now the improved FindOpenGLES2 17 module. 18 * Source/cmake/OptionsGTK.cmake: Set default value for ENABLE_GLES2 19 depending on the libraries found on the system. 20 Move the detection of GLX (and the include of CMakePushCheckState) 21 to FindOpenGL.cmake. 22 Ensure that we only define USE_GLX when we build with OpenGL 23 (but not with GLESv2). 24 1 25 2015-05-27 Dean Jackson <dino@apple.com> 2 26 -
trunk/Source/WebCore/CMakeLists.txt
r184895 r184954 3001 3001 3002 3002 if (ENABLE_GRAPHICS_CONTEXT_3D) 3003 # For platforms that want to use system-provided OpenGL (ES) headers, 3004 # these include directories need to be added before the ANGLE directories. 3005 if (OPENGL_FOUND) 3003 # For platforms that want to use system-provided OpenGL (ES) / EGL headers, 3004 # these include directories, libraries or definitions need to be 3005 # added before the ANGLE directories. 3006 if (USE_OPENGL) 3006 3007 list(APPEND WebCore_SYSTEM_INCLUDE_DIRECTORIES 3007 ${OPENGL_INCLUDE_DIR }3008 ${OPENGL_INCLUDE_DIRS} 3008 3009 ) 3009 3010 list(APPEND WebCore_LIBRARIES 3010 ${OPENGL_ gl_LIBRARY}3011 ${OPENGL_LIBRARIES} 3011 3012 ) 3012 elseif (OPENGLES2_FOUND) 3013 add_definitions(${OPENGL_DEFINITIONS}) 3014 elseif (USE_OPENGL_ES_2) 3013 3015 list(APPEND WebCore_SYSTEM_INCLUDE_DIRECTORIES 3014 ${OPENGLES2_INCLUDE_DIR }3016 ${OPENGLES2_INCLUDE_DIRS} 3015 3017 ) 3016 3018 list(APPEND WebCore_LIBRARIES 3017 3019 ${OPENGLES2_LIBRARIES} 3018 3020 ) 3021 add_definitions(${OPENGLES2_DEFINITIONS}) 3022 endif () 3023 3024 if (USE_EGL) 3025 list(APPEND WebCore_SYSTEM_INCLUDE_DIRECTORIES 3026 ${EGL_INCLUDE_DIRS} 3027 ) 3028 list(APPEND WebCore_LIBRARIES 3029 ${EGL_LIBRARIES} 3030 ) 3031 add_definitions(${EGL_DEFINITIONS}) 3019 3032 endif () 3020 3033 -
trunk/Source/WebCore/ChangeLog
r184953 r184954 1 2015-05-28 Carlos Alberto Lopez Perez <clopez@igalia.com> 2 3 [CMake] Improve detection and usage of GL/GLES/EGL libraries. 4 https://bugs.webkit.org/show_bug.cgi?id=145408 5 6 Reviewed by Carlos Garcia Campos. 7 8 No new tests, no behavior changes. 9 10 * CMakeLists.txt: Ensure that we include the libraries and includes 11 for the GL/GLESv2/EGL libraries before including the ANGLE directories. 12 Define also any CFLAG that the system GL/GLESv2/EGL libraries may need. 13 * PlatformEfl.cmake: Remove some includes that are now unneeded, 14 because we are including now the EGL libraries on CMakeLists.txt 15 * PlatformGTK.cmake: Remove unneeded include (We are including the EGL 16 libraries now on CMakeLists.txt) 17 1 18 2015-05-28 Youenn Fablet <youenn.fablet@crf.canon.fr> 2 19 -
trunk/Source/WebCore/PlatformEfl.cmake
r184610 r184954 394 394 if (USE_EGL) 395 395 list(APPEND WebCore_SYSTEM_INCLUDE_DIRECTORIES 396 ${EGL_INCLUDE_DIR}397 396 "${WEBCORE_DIR}/platform/graphics/surfaces/egl" 398 397 ) … … 428 427 endif () 429 428 430 if (USE_EGL) 431 list(APPEND WebCore_LIBRARIES 432 ${EGL_LIBRARY} 433 ) 434 elseif (X11_Xcomposite_FOUND AND X11_Xrender_FOUND) 429 if (NOT USE_EGL AND X11_Xcomposite_FOUND AND X11_Xrender_FOUND) 435 430 list(APPEND WebCore_LIBRARIES 436 431 ${X11_Xcomposite_LIB} -
trunk/Source/WebCore/PlatformGTK.cmake
r184536 r184954 420 420 endif () 421 421 422 if (USE_EGL)423 list(APPEND WebCore_LIBRARIES424 ${EGL_LIBRARY}425 )426 endif ()427 422 428 423 if (USE_OPENGL_ES_2) -
trunk/Source/cmake/FindEGL.cmake
r166635 r184954 3 3 # 4 4 # EGL_FOUND - system has EGL installed. 5 # EGL_INCLUDE_DIR - directories which contain the EGL headers. 6 # EGL_LIBRARY - libraries required to link against EGL. 5 # EGL_INCLUDE_DIRS - directories which contain the EGL headers. 6 # EGL_LIBRARIES - libraries required to link against EGL. 7 # EGL_DEFINITIONS - Compiler switches required for using EGL. 7 8 # 8 9 # Copyright (C) 2012 Intel Corporation. All rights reserved. … … 29 30 # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 31 31 find_path(EGL_INCLUDE_DIR NAMES EGL/egl.h) 32 33 find_package(PkgConfig) 34 35 pkg_check_modules(PC_EGL egl) 36 37 if (PC_EGL_FOUND) 38 set(EGL_DEFINITIONS ${PC_EGL_CFLAGS_OTHER}) 39 endif () 40 41 find_path(EGL_INCLUDE_DIRS NAMES EGL/egl.h 42 HINTS ${PC_EGL_INCLUDEDIR} ${PC_EGL_INCLUDE_DIRS} 43 ) 32 44 33 45 set(EGL_NAMES ${EGL_NAMES} egl EGL) 34 find_library(EGL_LIBRARY NAMES ${EGL_NAMES}) 46 find_library(EGL_LIBRARIES NAMES ${EGL_NAMES} 47 HINTS ${PC_EGL_LIBDIR} ${PC_EGL_LIBRARY_DIRS} 48 ) 35 49 36 50 include(FindPackageHandleStandardArgs) 37 FIND_PACKAGE_HANDLE_STANDARD_ARGS(EGL DEFAULT_MSG EGL_INCLUDE_DIR EGL_LIBRARY)51 FIND_PACKAGE_HANDLE_STANDARD_ARGS(EGL DEFAULT_MSG EGL_INCLUDE_DIRS EGL_LIBRARIES) 38 52 39 mark_as_advanced(EGL_INCLUDE_DIR EGL_LIBRARY)53 mark_as_advanced(EGL_INCLUDE_DIRS EGL_LIBRARIES) -
trunk/Source/cmake/FindOpenGL.cmake
r184953 r184954 1 # - Try to Find EGL1 # - Try to Find OpenGL 2 2 # Once done, this will define 3 3 # 4 # EGL_FOUND - system has EGL installed. 5 # EGL_INCLUDE_DIR - directories which contain the EGL headers. 6 # EGL_LIBRARY - libraries required to link against EGL. 4 # OPENGL_FOUND - system has OpenGL installed. 5 # OPENGL_INCLUDE_DIRS - directories which contain the OpenGL headers. 6 # OPENGL_LIBRARIES - libraries required to link against OpenGL. 7 # OPENGL_DEFINITIONS - Compiler switches required for using OpenGL. 7 8 # 8 # Copyright (C) 201 2 Intel Corporation. All rights reserved.9 # Copyright (C) 2015 Igalia S.L. 9 10 # 10 11 # Redistribution and use in source and binary forms, with or without … … 29 30 # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 31 31 find_path(EGL_INCLUDE_DIR NAMES EGL/egl.h)32 32 33 set(EGL_NAMES ${EGL_NAMES} egl EGL) 34 find_library(EGL_LIBRARY NAMES ${EGL_NAMES}) 33 find_package(PkgConfig) 34 35 pkg_check_modules(PC_OPENGL gl) 36 37 if (PC_OPENGL_FOUND) 38 set(OPENGL_DEFINITIONS ${PC_OPENGL_CFLAGS_OTHER}) 39 endif () 40 41 find_path(OPENGL_INCLUDE_DIRS NAMES GL/gl.h 42 HINTS ${PC_OPENGL_INCLUDEDIR} ${PC_OPENGL_INCLUDE_DIRS} 43 ) 44 45 set(OPENGL_NAMES ${OPENGL_NAMES} gl GL) 46 find_library(OPENGL_LIBRARIES NAMES ${OPENGL_NAMES} 47 HINTS ${PC_OPENGL_LIBDIR} ${PC_OPENGL_LIBRARY_DIRS} 48 ) 35 49 36 50 include(FindPackageHandleStandardArgs) 37 FIND_PACKAGE_HANDLE_STANDARD_ARGS( EGL DEFAULT_MSG EGL_INCLUDE_DIR EGL_LIBRARY)51 FIND_PACKAGE_HANDLE_STANDARD_ARGS(OPENGL DEFAULT_MSG OPENGL_INCLUDE_DIRS OPENGL_LIBRARIES) 38 52 39 mark_as_advanced(EGL_INCLUDE_DIR EGL_LIBRARY) 53 mark_as_advanced(OPENGL_INCLUDE_DIRS OPENGL_LIBRARIES) 54 55 if (OPENGL_FOUND) 56 # We don't use find_package for GLX because it is part of -lGL, unlike EGL. We need to 57 # have OPENGL_INCLUDE_DIRS as part of the directories check_include_files() looks for in 58 # case OpenGL is installed into a non-standard location. 59 include(CMakePushCheckState) 60 CMAKE_PUSH_CHECK_STATE() 61 set(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} ${OPENGL_INCLUDE_DIRS}) 62 check_include_files("GL/glx.h" GLX_FOUND) 63 CMAKE_POP_CHECK_STATE() 64 endif () -
trunk/Source/cmake/FindOpenGLES2.cmake
r159806 r184954 10 10 11 11 if (PC_OPENGLES2_FOUND) 12 set(OPENGLES2_INCLUDE_DIRS ${PC_OPENGLES2_INCLUDE_DIRS})13 12 set(OPENGLES2_DEFINITIONS ${PC_OPENGLES2_CFLAGS_OTHER}) 14 else ()15 find_path(OPENGLES2_INCLUDE_DIRS NAMES GLES2/gl2.h)16 13 endif () 17 14 18 find_library(OPENGLES2_LIBRARIES GLESv2 19 HINTS ${PC_OPENGLES2_LIBRARY_DIRS} ${PC_OPENGLES2_LIBDIR} 15 find_path(OPENGLES2_INCLUDE_DIRS NAMES GLES2/gl2.h 16 HINTS ${PC_OPENGLES2_INCLUDEDIR} ${PC_OPENGLES2_INCLUDE_DIRS} 17 ) 18 19 set(OPENGLES2_NAMES ${OPENGLES2_NAMES} glesv2 GLESv2) 20 find_library(OPENGLES2_LIBRARIES NAMES ${OPENGLES2_NAMES} 21 HINTS ${PC_OPENGLES2_LIBDIR} ${PC_OPENGLES2_LIBRARY_DIRS} 20 22 ) 21 23 22 24 include(FindPackageHandleStandardArgs) 23 find_package_handle_standard_args(OpenGLES2 DEFAULT_MSG OPENGLES2_LIBRARIES OPENGLES2_INCLUDE_DIRS)25 FIND_PACKAGE_HANDLE_STANDARD_ARGS(OPENGLES2 DEFAULT_MSG OPENGLES2_INCLUDE_DIRS OPENGLES2_LIBRARIES) 24 26 25 mark_as_advanced(OPENGLES2_INCLUDE_DIRS OPENGLES2_LIBRAR Y)27 mark_as_advanced(OPENGLES2_INCLUDE_DIRS OPENGLES2_LIBRARIES) -
trunk/Source/cmake/OptionsEfl.cmake
r184928 r184954 231 231 option(ENABLE_GLES2 "Enable GLES Support") 232 232 if (ENABLE_GLES2) 233 find_package( GLESREQUIRED)233 find_package(OpenGLES2 REQUIRED) 234 234 set(USE_OPENGL_ES_2 1) 235 235 add_definitions(-DUSE_OPENGL_ES_2=1) -
trunk/Source/cmake/OptionsGTK.cmake
r184928 r184954 1 include(CMakePushCheckState)2 1 include(GNUInstallDirs) 3 2 … … 50 49 find_package(EGL) 51 50 find_package(OpenGL) 51 find_package(OpenGLES2) 52 52 53 53 WEBKIT_OPTION_BEGIN() 54 54 55 WEBKIT_OPTION_DEFINE(ENABLE_GLES2 "Whether to enable OpenGL ES 2.0." PUBLIC OFF) 55 # Set the default value for ENABLE_GLES2 automatically. 56 # We are not enabling or disabling automatically a feature here, because 57 # the feature is by default always on (ENABLE_OPENGL=ON). 58 # What we select here automatically is if we use OPENGL (ENABLE_GLES2=OFF) 59 # or OPENGLES2 (ENABLE_GLES2=ON) for building the feature. 60 set(ENABLE_GLES2_DEFAULT OFF) 61 62 if (NOT OPENGL_FOUND AND OPENGLES2_FOUND) 63 set(ENABLE_GLES2_DEFAULT ON) 64 endif () 65 66 WEBKIT_OPTION_DEFINE(ENABLE_GLES2 "Whether to enable OpenGL ES 2.0." PUBLIC ${ENABLE_GLES2_DEFAULT}) 56 67 WEBKIT_OPTION_DEFINE(ENABLE_GTKDOC "Whether or not to use generate gtkdoc." PUBLIC OFF) 57 68 WEBKIT_OPTION_DEFINE(ENABLE_INTROSPECTION "Whether to enable GObject introspection." PUBLIC ON) … … 103 114 104 115 if (OPENGL_FOUND) 105 # We don't use find_package for GLX because it is part of -lGL, unlike EGL. We need to106 # have OPENGL_INCLUDE_DIR as part of the directories check_include_files() looks for in107 # case OpenGL is installed into a non-standard location.108 CMAKE_PUSH_CHECK_STATE()109 set(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} ${OPENGL_INCLUDE_DIR})110 check_include_files("GL/glx.h" GLX_FOUND)111 CMAKE_POP_CHECK_STATE()112 113 116 if (GLX_FOUND) 114 117 list(APPEND CAIROGL_COMPONENTS cairo-glx) … … 324 327 SET_AND_EXPOSE_TO_BUILD(USE_EGL ${EGL_FOUND}) 325 328 326 if (ENABLE_X11_TARGET AND GLX_FOUND )329 if (ENABLE_X11_TARGET AND GLX_FOUND AND USE_OPENGL) 327 330 SET_AND_EXPOSE_TO_BUILD(USE_GLX TRUE) 328 331 endif ()
Note:
See TracChangeset
for help on using the changeset viewer.