mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 22:26:31 +00:00
apitrace: new package
Trace and replay OpenGL and OpenGL ES APIs calls to/from a file. http://apitrace.github.io/ [Peter: fix Config.in, depend on glibc, use github helper] Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
d00f36c9dc
commit
65ef7afc72
@ -215,6 +215,7 @@ source "package/x11r7/Config.in"
|
|||||||
|
|
||||||
comment "X applications"
|
comment "X applications"
|
||||||
source "package/alsamixergui/Config.in"
|
source "package/alsamixergui/Config.in"
|
||||||
|
source "package/apitrace/Config.in"
|
||||||
source "package/docker/Config.in"
|
source "package/docker/Config.in"
|
||||||
source "package/feh/Config.in"
|
source "package/feh/Config.in"
|
||||||
source "package/freerdp/Config.in"
|
source "package/freerdp/Config.in"
|
||||||
|
16
package/apitrace/Config.in
Normal file
16
package/apitrace/Config.in
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
comment "apitrace needs a (e)glibc toolchain w/ C++"
|
||||||
|
depends on BR2_PACKAGE_XORG7
|
||||||
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_USES_GLIBC
|
||||||
|
|
||||||
|
config BR2_PACKAGE_APITRACE
|
||||||
|
bool "apitrace"
|
||||||
|
depends on BR2_INSTALL_LIBSTDCPP
|
||||||
|
depends on BR2_TOOLCHAIN_USES_GLIBC # uses glibc specific __libc_dlsym
|
||||||
|
depends on BR2_PACKAGE_XORG7
|
||||||
|
select BR2_PACKAGE_XLIB_LIBX11
|
||||||
|
help
|
||||||
|
Trace and replay OpenGL and OpenGL ES APIs calls to/from a
|
||||||
|
file. You may install apitrace GUI from your distribution to
|
||||||
|
inspect generated traces.
|
||||||
|
|
||||||
|
http://apitrace.github.io/
|
17
package/apitrace/apitrace.mk
Normal file
17
package/apitrace/apitrace.mk
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# apitrace
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
APITRACE_VERSION = c181b7fbf4b1c3912424761fec8ac7124640543a
|
||||||
|
APITRACE_SITE = $(call github,apitrace,apitrace,$(APITRACE_VERSION))
|
||||||
|
APITRACE_LICENSE = MIT
|
||||||
|
APITRACE_LICENSE_FILES = LICENSE
|
||||||
|
|
||||||
|
APITRACE_DEPENDENCIES = xlib_libX11 host-python
|
||||||
|
|
||||||
|
# Gui was never tested, so we prefer to explicitly disable it
|
||||||
|
APITRACE_CONF_OPT += -DENABLE_GUI=false
|
||||||
|
|
||||||
|
$(eval $(cmake-package))
|
Loading…
x
Reference in New Issue
Block a user