diff options
| author | Michael Tretter <m.tretter@pengutronix.de> | 2020-09-09 10:42:18 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2020-10-19 23:49:22 -0700 |
| commit | 13eacba213b2493011aac7c6b4e7ce948d3a8ea3 (patch) | |
| tree | c0bda5ae7a1d1f9b99a99740d65230cb351a4890 | |
| parent | 7a0d9990a6dfeb5f1141d96c5e1b74977136cec7 (diff) | |
| download | meta-openembedded-13eacba213b2493011aac7c6b4e7ce948d3a8ea3.tar.gz | |
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>
| -rw-r--r-- | meta-oe/recipes-devtools/apitrace/apitrace_9.0.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/apitrace/apitrace_9.0.bb b/meta-oe/recipes-devtools/apitrace/apitrace_9.0.bb new file mode 100644 index 0000000000..6e61683cde --- /dev/null +++ b/meta-oe/recipes-devtools/apitrace/apitrace_9.0.bb | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | SUMMARY = "Tools for tracing OpenGL, Direct3D, and other graphics APIs" | ||
| 2 | HOMEPAGE = "http://apitrace.github.io/" | ||
| 3 | SECTION = "console/tools" | ||
| 4 | LICENSE = "MIT & BSD-3-Clause" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=aeb969185a143c3c25130bc2c3ef9a50 \ | ||
| 6 | file://thirdparty/snappy/COPYING;md5=f62f3080324a97b3159a7a7e61812d0c" | ||
| 7 | |||
| 8 | SRCREV = "cae55f54c53449fd07f8a917dcd0874db2c15032" | ||
| 9 | SRC_URI = "git://github.com/${BPN}/${BPN}.git" | ||
| 10 | |||
| 11 | S = "${WORKDIR}/git" | ||
| 12 | |||
| 13 | DEPENDS += "zlib libpng python3-native" | ||
| 14 | |||
| 15 | inherit cmake | ||
| 16 | |||
| 17 | EXTRA_OECMAKE += "\ | ||
| 18 | -DENABLE_GUI=OFF \ | ||
| 19 | -DENABLE_X11=OFF \ | ||
| 20 | -DENABLE_STATIC_LIBGCC=OFF \ | ||
| 21 | -DENABLE_STATIC_LIBSTDCXX=OFF \ | ||
| 22 | -DPython3_ROOT_DIR=/usr/bin/python3-native \ | ||
| 23 | " | ||
| 24 | |||
| 25 | # Use the bundled snappy library | ||
| 26 | EXTRA_OECMAKE += "\ | ||
| 27 | -DENABLE_STATIC_SNAPPY=ON \ | ||
| 28 | " | ||
