mirror of
https://git.yoctoproject.org/poky
synced 2026-03-29 05:02:22 +02:00
texturator requires GLES 3 headers and libs so let's explicit this dependency. This was not detected until now because mesa, the default provider, actually provides both Open GLES 2 and 3 compliant implementations. Cc: Quentin Schulz <foss+yocto@0leil.net> (From OE-Core rev: a8bac1006d87d0a702630607f6c46d2f4926776e) Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
1.0 KiB
BlitzBasic
26 lines
1.0 KiB
BlitzBasic
SUMMARY = "Demo application to showcase 3D graphics using kms and gbm"
|
|
DESCRIPTION = "kmscube is a little demonstration program for how to drive bare metal graphics \
|
|
without a compositor like X11, wayland or similar, using DRM/KMS (kernel mode \
|
|
setting), GBM (graphics buffer manager) and EGL for rendering content using \
|
|
OpenGL or OpenGL ES."
|
|
HOMEPAGE = "https://cgit.freedesktop.org/mesa/kmscube/"
|
|
LICENSE = "MIT"
|
|
SECTION = "graphics"
|
|
DEPENDS = "virtual/libgles3 virtual/libgles2 virtual/egl libdrm"
|
|
|
|
LIC_FILES_CHKSUM = "file://kmscube.c;beginline=1;endline=23;md5=8b309d4ee67b7315ff7381270dd631fb"
|
|
|
|
SRCREV = "9f63f359fab1b5d8e862508e4e51c9dfe339ccb0"
|
|
SRC_URI = "git://gitlab.freedesktop.org/mesa/kmscube;branch=master;protocol=https"
|
|
SRC_URI += "file://0001-texturator-Use-correct-GL-extension-header.patch"
|
|
UPSTREAM_CHECK_COMMITS = "1"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit meson pkgconfig features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "opengl"
|
|
|
|
PACKAGECONFIG ??= ""
|
|
PACKAGECONFIG[gstreamer] = "-Dgstreamer=enabled,-Dgstreamer=disabled,gstreamer1.0 gstreamer1.0-plugins-base"
|