summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2013-09-02 17:13:32 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-06 23:03:22 +0100
commit78296aad824df650d1da1900d675dfdb4f4ceeb2 (patch)
tree2c7af4a0730d5db5cb61c338e15672a1bfdd00af /meta/recipes-graphics
parente4556e5a7bc2217845cd918e1c3e91c98cf0f31a (diff)
downloadpoky-78296aad824df650d1da1900d675dfdb4f4ceeb2.tar.gz
eglinfo: add recipes for x11 and fb backends
eglinfo is a small utility for printing out information about EGL as well as about its client APIs, OpenGL / OpenGLES 1.x / OpenGLES 2.x / OpenVG. Recipe originally by Carlos Rafael Giani <dv@pseudoterminal.org>. (From OE-Core rev: a8835cc014d761bf18a420b48c7c61cdfeded552) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r--meta/recipes-graphics/eglinfo/eglinfo-fb_1.0.bb11
-rw-r--r--meta/recipes-graphics/eglinfo/eglinfo-x11_1.0.bb8
-rw-r--r--meta/recipes-graphics/eglinfo/eglinfo.inc32
3 files changed, 51 insertions, 0 deletions
diff --git a/meta/recipes-graphics/eglinfo/eglinfo-fb_1.0.bb b/meta/recipes-graphics/eglinfo/eglinfo-fb_1.0.bb
new file mode 100644
index 0000000000..65b265fcb7
--- /dev/null
+++ b/meta/recipes-graphics/eglinfo/eglinfo-fb_1.0.bb
@@ -0,0 +1,11 @@
1EGLINFO_PLATFORM ?= "fb"
2EGLINFO_BINARY_NAME ?= "eglinfo-fb"
3
4# .bbappend files in BSP meta layers can add EGLINFO_DEVICE
5# values if necessary. eglinfo.inc contains default values for
6# the currently supported devices.
7# Consult the eglinfo README.md for details
8
9include eglinfo.inc
10
11SUMMARY += "(Framebuffer version)"
diff --git a/meta/recipes-graphics/eglinfo/eglinfo-x11_1.0.bb b/meta/recipes-graphics/eglinfo/eglinfo-x11_1.0.bb
new file mode 100644
index 0000000000..18fc8938d6
--- /dev/null
+++ b/meta/recipes-graphics/eglinfo/eglinfo-x11_1.0.bb
@@ -0,0 +1,8 @@
1EGLINFO_PLATFORM ?= "x11"
2EGLINFO_BINARY_NAME ?= "eglinfo-x11"
3
4include eglinfo.inc
5
6DEPENDS += "virtual/libx11"
7
8SUMMARY += "(X11 version)"
diff --git a/meta/recipes-graphics/eglinfo/eglinfo.inc b/meta/recipes-graphics/eglinfo/eglinfo.inc
new file mode 100644
index 0000000000..d53d0ff21e
--- /dev/null
+++ b/meta/recipes-graphics/eglinfo/eglinfo.inc
@@ -0,0 +1,32 @@
1SUMMARY = "Utility for printing information EGL and its client APIs (OpenGL, OpenGL ES, OpenVG)"
2SECTION = "graphics"
3LICENSE = "Zlib"
4HOMEPAGE = "https://github.com/dv1/eglinfo"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=8d4f33bc3add976f7dfae85dab66f03c"
6
7DEPENDS = "virtual/egl"
8
9SRC_URI = "git://github.com/dv1/eglinfo.git;branch=master"
10SRCREV = "4a49ff59545d9b6a8222badab64115f89d3a6774"
11
12S = "${WORKDIR}/git"
13
14inherit waf
15
16# BSP layers should add .bbappend files for the -x11 and -fb .bb recipes,
17# which append the respective EGL/OpenGLES/OpenVG libraries to DEPENDS
18# not doing that here, since some platforms might not have OpenGL ES or OpenVG support
19# (in that case, the eglinfo build scripts automatically disable the relevant code paths)
20
21EGLINFO_DEVICE ?= "generic"
22EGLINFO_DEVICE_raspberrypi ?= "raspberrypi"
23EGLINFO_DEVICE_beagleboard ?= "beagleboard"
24EGLINFO_DEVICE_mx6 ?= "imx6"
25
26EXTRA_OECONF = "--platform=${EGLINFO_PLATFORM} \
27 --device=${EGLINFO_DEVICE} \
28 --sysroot ${STAGING_DIR_TARGET}"
29
30do_install_append() {
31 mv ${D}/${bindir}/eglinfo ${D}/${bindir}/${EGLINFO_BINARY_NAME}
32}