[Webkit-unassigned] [Bug 73111] [Texmap][EFL] Accelerated compositing support using TextureMapper on EFL port

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Nov 28 02:43:15 PST 2011


https://bugs.webkit.org/show_bug.cgi?id=73111


Tomasz Morawski <t.morawski at samsung.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |t.morawski at samsung.com




--- Comment #10 from Tomasz Morawski <t.morawski at samsung.com>  2011-11-28 02:43:14 PST ---
Hi,
It still does not compile due to that there is missing FindOpenGL.cmake file. What about adding something like this:


Source/cmake/FindOpenGL.cmake
include(LibFindMacros)

libfind_pkg_check_modules(OpenGL_PKGCONF gl)

find_path(OpenGL_INCLUDE_DIR
  NAMES GL/gl.h
  PATHS ${OpenGL_PKGCONF_INCLUDE_DIRS}
)

find_library(OpenGL_LIBRARY
  NAMES GL
  PATHS ${OpenGL_PKGCONF_LIBRARY_DIRS}
)

set(OpenGL_PROCESS_INCLUDES OpenGL_INCLUDE_DIR)
set(OpenGL_PROCESS_LIBS OpenGL_LIBRARY)
libfind_process(OpenGL)


It could be used as:

FIND_PACKAGE(OpenGL REQUIRED)

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list