* [meta-arago][master/scarthgap][0/2] Addition of off-screen render demo
@ 2025-07-11 14:26 a-christidis
2025-07-11 14:26 ` [meta-arago][master/scarthgap][1/2] meta-arago-test: recipes-graphics: Add lightweight off-screen demo a-christidis
2025-07-11 14:26 ` [meta-arago][master/scarthgap][2/2] meta-arago-test: packagegroups: Add off-screen demo to ti-test packagegroup a-christidis
0 siblings, 2 replies; 5+ messages in thread
From: a-christidis @ 2025-07-11 14:26 UTC (permalink / raw)
To: rs, reatmon, meta-arago
From: Antonios Christidis <a-christidis@ti.com>
This series adds a off-screen rendering demo to our sdk. It includes the
new recipe as well as the recipe addition to the ti-test packagegroup.
Kind Regards,
Antonios Christidis
Antonios Christidis (2):
meta-arago-test: recipes-graphics: Add lightweight off-screen demo
meta-arago-test: packagegroups: Add off-screen demo to ti-test package
group
.../recipes-core/packagegroups/ti-test.bb | 1 +
.../offscreen-demo/offscreendemo_0.0.1.bb | 16 ++++++++++++++++
2 files changed, 17 insertions(+)
create mode 100644 meta-arago-test/recipes-graphics/offscreen-demo/offscreendemo_0.0.1.bb
--
2.34.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [meta-arago][master/scarthgap][1/2] meta-arago-test: recipes-graphics: Add lightweight off-screen demo
2025-07-11 14:26 [meta-arago][master/scarthgap][0/2] Addition of off-screen render demo a-christidis
@ 2025-07-11 14:26 ` a-christidis
2025-07-11 15:31 ` Andrew Davis
2025-07-11 15:32 ` Denys Dmytriyenko
2025-07-11 14:26 ` [meta-arago][master/scarthgap][2/2] meta-arago-test: packagegroups: Add off-screen demo to ti-test packagegroup a-christidis
1 sibling, 2 replies; 5+ messages in thread
From: a-christidis @ 2025-07-11 14:26 UTC (permalink / raw)
To: rs, reatmon, meta-arago
From: Antonios Christidis <a-christidis@ti.com>
Add recipe for lightweight off-screen rendering demo.
Signed-off-by: Antonios Christidis <a-christidis@ti.com>
---
.../offscreen-demo/offscreendemo_0.0.1.bb | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
create mode 100644 meta-arago-test/recipes-graphics/offscreen-demo/offscreendemo_0.0.1.bb
diff --git a/meta-arago-test/recipes-graphics/offscreen-demo/offscreendemo_0.0.1.bb b/meta-arago-test/recipes-graphics/offscreen-demo/offscreendemo_0.0.1.bb
new file mode 100644
index 00000000..f0b6a1fd
--- /dev/null
+++ b/meta-arago-test/recipes-graphics/offscreen-demo/offscreendemo_0.0.1.bb
@@ -0,0 +1,16 @@
+SUMMARY = "Lightweight Render Example"
+DESCRIPTION = "Lightweight Render Example. Heavily inspired by Eduardo Lima's gpu-playground, this attempts to act as the smallest demo of offscreen rendering."
+
+HOMEPAGE = "https://github.com/StaticRocket/lightweight-offscreen"
+
+SRC_URI = "git://github.com/StaticRocket/lightweight-offscreen.git;protocol=https;branch=master"
+SRCREV = "eac40e0073cb5f81688aee890e0a67f99678a290"
+
+LICENSE = "CC0-1.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=65d3616852dbf7b1a6d4b53b00626032"
+
+S = "${WORKDIR}/git"
+
+DEPENDS += "virtual/egl virtual/libgles2 mesa-pvr"
+
+inherit pkgconfig meson
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [meta-arago][master/scarthgap][2/2] meta-arago-test: packagegroups: Add off-screen demo to ti-test packagegroup
2025-07-11 14:26 [meta-arago][master/scarthgap][0/2] Addition of off-screen render demo a-christidis
2025-07-11 14:26 ` [meta-arago][master/scarthgap][1/2] meta-arago-test: recipes-graphics: Add lightweight off-screen demo a-christidis
@ 2025-07-11 14:26 ` a-christidis
1 sibling, 0 replies; 5+ messages in thread
From: a-christidis @ 2025-07-11 14:26 UTC (permalink / raw)
To: rs, reatmon, meta-arago
From: Antonios Christidis <a-christidis@ti.com>
Add the off-screen demo to ti-test package group.
Signed-off-by: Antonios Christidis <a-christidis@ti.com>
---
meta-arago-test/recipes-core/packagegroups/ti-test.bb | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta-arago-test/recipes-core/packagegroups/ti-test.bb b/meta-arago-test/recipes-core/packagegroups/ti-test.bb
index a50c71e2..fb4c3e4c 100644
--- a/meta-arago-test/recipes-core/packagegroups/ti-test.bb
+++ b/meta-arago-test/recipes-core/packagegroups/ti-test.bb
@@ -70,6 +70,7 @@ TI_TEST_EXTRAS = " \
piglit \
python3-numpy \
wayland-utils \
+ offscreendemo \
opencl-cts \
"
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [meta-arago][master/scarthgap][1/2] meta-arago-test: recipes-graphics: Add lightweight off-screen demo
2025-07-11 14:26 ` [meta-arago][master/scarthgap][1/2] meta-arago-test: recipes-graphics: Add lightweight off-screen demo a-christidis
@ 2025-07-11 15:31 ` Andrew Davis
2025-07-11 15:32 ` Denys Dmytriyenko
1 sibling, 0 replies; 5+ messages in thread
From: Andrew Davis @ 2025-07-11 15:31 UTC (permalink / raw)
To: a-christidis, rs, reatmon, meta-arago
On 7/11/25 9:26 AM, Antonios Christidis via lists.yoctoproject.org wrote:
> From: Antonios Christidis <a-christidis@ti.com>
>
> Add recipe for lightweight off-screen rendering demo.
>
> Signed-off-by: Antonios Christidis <a-christidis@ti.com>
> ---
> .../offscreen-demo/offscreendemo_0.0.1.bb | 16 ++++++++++++++++
> 1 file changed, 16 insertions(+)
> create mode 100644 meta-arago-test/recipes-graphics/offscreen-demo/offscreendemo_0.0.1.bb
>
> diff --git a/meta-arago-test/recipes-graphics/offscreen-demo/offscreendemo_0.0.1.bb b/meta-arago-test/recipes-graphics/offscreen-demo/offscreendemo_0.0.1.bb
> new file mode 100644
> index 00000000..f0b6a1fd
> --- /dev/null
> +++ b/meta-arago-test/recipes-graphics/offscreen-demo/offscreendemo_0.0.1.bb
> @@ -0,0 +1,16 @@
> +SUMMARY = "Lightweight Render Example"
> +DESCRIPTION = "Lightweight Render Example. Heavily inspired by Eduardo Lima's gpu-playground, this attempts to act as the smallest demo of offscreen rendering."
> +
> +HOMEPAGE = "https://github.com/StaticRocket/lightweight-offscreen"
> +
> +SRC_URI = "git://github.com/StaticRocket/lightweight-offscreen.git;protocol=https;branch=master"
> +SRCREV = "eac40e0073cb5f81688aee890e0a67f99678a290"
> +
> +LICENSE = "CC0-1.0"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=65d3616852dbf7b1a6d4b53b00626032"
> +
> +S = "${WORKDIR}/git"
> +
> +DEPENDS += "virtual/egl virtual/libgles2 mesa-pvr"
You shouldn't depend directly on "mesa-pvr", that is just one provider
of virtual/libgles2, which you already have as a dependency.
Andrew
> +
> +inherit pkgconfig meson
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-arago][master/scarthgap][1/2] meta-arago-test: recipes-graphics: Add lightweight off-screen demo
2025-07-11 14:26 ` [meta-arago][master/scarthgap][1/2] meta-arago-test: recipes-graphics: Add lightweight off-screen demo a-christidis
2025-07-11 15:31 ` Andrew Davis
@ 2025-07-11 15:32 ` Denys Dmytriyenko
1 sibling, 0 replies; 5+ messages in thread
From: Denys Dmytriyenko @ 2025-07-11 15:32 UTC (permalink / raw)
To: a-christidis; +Cc: rs, reatmon, meta-arago
On Fri, Jul 11, 2025 at 09:26:10AM -0500, Antonios Christidis via lists.yoctoproject.org wrote:
> From: Antonios Christidis <a-christidis@ti.com>
>
> Add recipe for lightweight off-screen rendering demo.
>
> Signed-off-by: Antonios Christidis <a-christidis@ti.com>
> ---
> .../offscreen-demo/offscreendemo_0.0.1.bb | 16 ++++++++++++++++
> 1 file changed, 16 insertions(+)
> create mode 100644 meta-arago-test/recipes-graphics/offscreen-demo/offscreendemo_0.0.1.bb
>
> diff --git a/meta-arago-test/recipes-graphics/offscreen-demo/offscreendemo_0.0.1.bb b/meta-arago-test/recipes-graphics/offscreen-demo/offscreendemo_0.0.1.bb
> new file mode 100644
> index 00000000..f0b6a1fd
> --- /dev/null
> +++ b/meta-arago-test/recipes-graphics/offscreen-demo/offscreendemo_0.0.1.bb
> @@ -0,0 +1,16 @@
> +SUMMARY = "Lightweight Render Example"
> +DESCRIPTION = "Lightweight Render Example. Heavily inspired by Eduardo Lima's gpu-playground, this attempts to act as the smallest demo of offscreen rendering."
> +
> +HOMEPAGE = "https://github.com/StaticRocket/lightweight-offscreen"
> +
> +SRC_URI = "git://github.com/StaticRocket/lightweight-offscreen.git;protocol=https;branch=master"
> +SRCREV = "eac40e0073cb5f81688aee890e0a67f99678a290"
> +
> +LICENSE = "CC0-1.0"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=65d3616852dbf7b1a6d4b53b00626032"
> +
> +S = "${WORKDIR}/git"
This ^^^ is no longer correct for master
> +DEPENDS += "virtual/egl virtual/libgles2 mesa-pvr"
> +
> +inherit pkgconfig meson
> --
> 2.34.1
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-07-11 15:32 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-11 14:26 [meta-arago][master/scarthgap][0/2] Addition of off-screen render demo a-christidis
2025-07-11 14:26 ` [meta-arago][master/scarthgap][1/2] meta-arago-test: recipes-graphics: Add lightweight off-screen demo a-christidis
2025-07-11 15:31 ` Andrew Davis
2025-07-11 15:32 ` Denys Dmytriyenko
2025-07-11 14:26 ` [meta-arago][master/scarthgap][2/2] meta-arago-test: packagegroups: Add off-screen demo to ti-test packagegroup a-christidis
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.