rpi-userland: provides OpenGL ES, EGL and OpenVG

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Thomas Petazzoni 2013-03-06 10:22:48 +00:00 committed by Peter Korsgaard
parent 5e6696713c
commit 203c30796e
4 changed files with 15 additions and 0 deletions

View File

@ -6,6 +6,10 @@
LIBEGL_SOURCE =
ifeq ($(BR2_PACKAGE_RPI_USERLAND),y)
LIBEGL_DEPENDENCIES += rpi-userland
endif
ifeq ($(LIBEGL_DEPENDENCIES),y)
define LIBEGL_CONFIGURE_CMDS
echo "No libEGL implementation selected. Configuration error."

View File

@ -6,6 +6,10 @@
LIBGLES_SOURCE =
ifeq ($(BR2_PACKAGE_RPI_USERLAND),y)
LIBGLES_DEPENDENCIES += rpi-userland
endif
ifeq ($(LIBGLES_DEPENDENCIES),y)
define LIBGLES_CONFIGURE_CMDS
echo "No libGLES implementation selected. Configuration error."

View File

@ -6,6 +6,10 @@
LIBOPENVG_SOURCE =
ifeq ($(BR2_PACKAGE_RPI_USERLAND),y)
LIBOPENVG_DEPENDENCIES += rpi-userland
endif
ifeq ($(LIBOPENVG_DEPENDENCIES),y)
define LIBOPENVG_CONFIGURE_CMDS
echo "No libOpenVG implementation selected. Configuration error."

View File

@ -3,6 +3,9 @@ config BR2_PACKAGE_RPI_USERLAND
depends on BR2_arm
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_LARGEFILE
select BR2_PACKAGE_HAS_OPENGL_EGL
select BR2_PACKAGE_HAS_OPENGL_ES
select BR2_PACKAGE_HAS_OPENVG
help
Raspberry Pi Userland contains the necessary library to use the
VideoCore driver.