Graphics Streaming Kit (formerly: Vulkan Cereal) as per [1] is a code generator that makes it easier to serialize and forward graphics API calls from one place to another.
[1] https://android.googlesource.com/platform/hardware/google/gfxstream
Signed-off-by: Lei Zhou lei.zhou@linaro.org --- .../gfxstream/gfxstream_git.bb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 meta-linaro/recipes-graphics/gfxstream/gfxstream_git.bb
diff --git a/meta-linaro/recipes-graphics/gfxstream/gfxstream_git.bb b/meta-linaro/recipes-graphics/gfxstream/gfxstream_git.bb new file mode 100644 index 0000000..5bd7975 --- /dev/null +++ b/meta-linaro/recipes-graphics/gfxstream/gfxstream_git.bb @@ -0,0 +1,18 @@ +SUMMARY = "gfxstream for graphics" +DESCRIPTION = "Graphics Streaming Kit is a code generator that makes \ +it easier to serialize and forward graphics API calls from one place to another" + +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=8c18bc94001e6e45c4727758ff462348" + +SRC_URI = "git://android.googlesource.com/platform/hardware/google/gfxstream;protocol=https;branch=main" +SRCREV = "${AUTOREV}" + +PV = "git${SRCPV}" +S = "${WORKDIR}/git" + +DEPENDS = "aemu libdrm virtual/libx11" +EXTRA_OEMESON += "-Ddefault_library=static" + +inherit meson pkgconfig +BBCLASSEXTEND = "nativesdk"