Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dv1/8475271a79f1dfd932132ae9251366dc to your computer and use it in GitHub Desktop.
Save dv1/8475271a79f1dfd932132ae9251366dc to your computer and use it in GitHub Desktop.
meta-freescale PACKAGECONFIG_GL EGL patch
From 89a9288534bfa508fdf9a227ba69e9dcdd480f91 Mon Sep 17 00:00:00 2001
From: Carlos Rafael Giani <dv@pseudoterminal.org>
Date: Tue, 17 Jul 2018 09:03:02 +0200
Subject: [PATCH] gstreamer1.0-plugins-base: Fix OpenGL packageconfig
The OpenGL stack in gstreamer1.0-plugins-base also needs EGL in order for
its OpenGL ES 2.x support to work
Signed-off-by: Carlos Rafael Giani <dv@pseudoterminal.org>
---
.../gstreamer/gstreamer1.0-plugins-base_1.14.%.bbappend | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.14.%.bbappend b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.14.%.bbappend
index 15a735d4..4b386511 100644
--- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.14.%.bbappend
+++ b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.14.%.bbappend
@@ -1,2 +1,2 @@
PACKAGECONFIG_GL_imxgpu2d = "${@bb.utils.contains('DISTRO_FEATURES', 'opengl x11', 'opengl', '', d)}"
-PACKAGECONFIG_GL_imxgpu3d = "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'gles2', '', d)}"
+PACKAGECONFIG_GL_imxgpu3d = "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'gles2 egl', '', d)}"
--
2.17.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment