forked from cubicool/meta-jetson-tk1
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It's intended to test for OpenGL/GLES. new file: recipes-graphics/glmark2/glmark2_2014.03.bb
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
SUMMARY = "OpenGL (ES) 2.0 benchmark" | ||
DESCRIPTION = "glmark2 is a benchmark for OpenGL (ES) 2.0. \ | ||
It uses only the subset of the OpenGL 2.0 API that is compatible with OpenGL ES 2.0." | ||
HOMEPAGE = "https://launchpad.net/glmark2" | ||
BUGTRACKER = "https://bugs.launchpad.net/glmark2" | ||
|
||
LICENSE = "GPLv3+ & SGIv1" | ||
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | ||
file://COPYING.SGI;beginline=5;md5=269cdab4af6748677acce51d9aa13552" | ||
|
||
DEPENDS = "libpng12 jpeg virtual/libx11" | ||
|
||
# depends on virtual/libx11 | ||
REQUIRED_DISTRO_FEATURES = "x11" | ||
|
||
SRC_URI = "https://launchpad.net/${BPN}/trunk/${PV}/+download/${BP}.tar.gz" | ||
|
||
SRC_URI[md5sum] = "739859cf57d4c8a23452c43e84f66e56" | ||
SRC_URI[sha256sum] = "bded41aaf918ce062d9b81e42cc5be943e6a80bc4ff9d046983b96102c3df6b5" | ||
|
||
inherit waf pkgconfig distro_features_check | ||
|
||
PACKAGECONFIG ?= "gl gles2" | ||
|
||
PACKAGECONFIG[gl] = ",,virtual/libgl" | ||
PACKAGECONFIG[gles2] = ",,virtual/libgles2" | ||
|
||
python __anonymous() { | ||
packageconfig = (d.getVar("PACKAGECONFIG", True) or "").split() | ||
flavors = [] | ||
if "gles2" in packageconfig: | ||
flavors.append("x11-glesv2") | ||
if "gl" in packageconfig: | ||
flavors.append("x11-gl") | ||
if flavors: | ||
d.appendVar("EXTRA_OECONF", " --with-flavors=%s" % ",".join(flavors)) | ||
} | ||
|
||
do_compile_prepend () { | ||
LD="${LD} -L${STAGING_LIBDIR}/arm-linux-gnueabihf/tegra -L${STAGING_LIBDIR}/arm-linux-gnueabihf/tegra-egl" | ||
} |