glfw/CMake/modules/Findosmesa.cmake
Jason Daly 6be8aee836 OSMesa backend for GLFW. Allows creation and drawing to in-memory OpenGL
contexts.

Two examples (simple and particles) are modified to draw to OSMesa
contexts for a while, and then dump the framebuffer to an image file.
2016-08-30 15:53:19 -07:00

19 lines
445 B
CMake

# Try to find OSMesa on a Unix system
#
# This will define:
#
# OSMESA_LIBRARIES - Link these to use OSMesa
# OSMESA_INCLUDE_DIR - Include directory for OSMesa
#
# Copyright (c) 2014 Brandon Schaefer <brandon.schaefer@canonical.com>
if (NOT WIN32)
find_package (PkgConfig)
pkg_check_modules (PKG_OSMESA QUIET osmesa)
set (OSMESA_INCLUDE_DIR ${PKG_OSMESA_INCLUDE_DIRS})
set (OSMESA_LIBRARIES ${PKG_OSMESA_LIBRARIES})
endif ()