mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-02 13:59:59 +00:00
apitrace: add new recipe
apitrace consists of a set of tools to: - trace OpenGL, OpenGL ES, Direct3D, and DirectDraw APIs calls to a file; - replay OpenGL and OpenGL ES calls from a file; - inspect OpenGL state at any call while retracing; - visualize and edit trace files. Signed-off-by: Michael Tretter <m.tretter@pengutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
committed by
Khem Raj
parent
7a0d9990a6
commit
13eacba213
@@ -0,0 +1,28 @@
|
|||||||
|
SUMMARY = "Tools for tracing OpenGL, Direct3D, and other graphics APIs"
|
||||||
|
HOMEPAGE = "http://apitrace.github.io/"
|
||||||
|
SECTION = "console/tools"
|
||||||
|
LICENSE = "MIT & BSD-3-Clause"
|
||||||
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=aeb969185a143c3c25130bc2c3ef9a50 \
|
||||||
|
file://thirdparty/snappy/COPYING;md5=f62f3080324a97b3159a7a7e61812d0c"
|
||||||
|
|
||||||
|
SRCREV = "cae55f54c53449fd07f8a917dcd0874db2c15032"
|
||||||
|
SRC_URI = "git://github.com/${BPN}/${BPN}.git"
|
||||||
|
|
||||||
|
S = "${WORKDIR}/git"
|
||||||
|
|
||||||
|
DEPENDS += "zlib libpng python3-native"
|
||||||
|
|
||||||
|
inherit cmake
|
||||||
|
|
||||||
|
EXTRA_OECMAKE += "\
|
||||||
|
-DENABLE_GUI=OFF \
|
||||||
|
-DENABLE_X11=OFF \
|
||||||
|
-DENABLE_STATIC_LIBGCC=OFF \
|
||||||
|
-DENABLE_STATIC_LIBSTDCXX=OFF \
|
||||||
|
-DPython3_ROOT_DIR=/usr/bin/python3-native \
|
||||||
|
"
|
||||||
|
|
||||||
|
# Use the bundled snappy library
|
||||||
|
EXTRA_OECMAKE += "\
|
||||||
|
-DENABLE_STATIC_SNAPPY=ON \
|
||||||
|
"
|
||||||
Reference in New Issue
Block a user