diff options
| author | Neena Busireddy <neena.busireddy@freescale.com> | 2014-10-16 15:45:05 -0500 |
|---|---|---|
| committer | Otavio Salvador <otavio@ossystems.com.br> | 2014-10-23 19:57:41 -0200 |
| commit | a016ca84f310e20149bec7ba6177f01229be8021 (patch) | |
| tree | 1ede3fba285c29d86e8b0dc21e6f392182dca3e4 | |
| parent | 2c95b7827c9122ec86cbd065ed20b98acffec70a (diff) | |
| download | meta-freescale-a016ca84f310e20149bec7ba6177f01229be8021.tar.gz | |
gstreamer1.0-plugins-bad: Remove gles2 for i.MX6 SoloLite
i.MX6 SoloLite (mx6sl) does not support 3D GPU hardware
acceleration. The X11 backend only supports mesa software rendering GL
and non-x11 backends does not support both GL and GLES.
This patch defines PACKAGECONFIG_GL for each i.MX6 SoC family as i.MX6
SoloLite is different from other SoC's.
Signed-off-by: Neena Busireddy <neena.busireddy@freescale.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
| -rw-r--r-- | meta-fsl-arm/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta-fsl-arm/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend b/meta-fsl-arm/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend index 8be11a299..da9023515 100644 --- a/meta-fsl-arm/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend +++ b/meta-fsl-arm/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend | |||
| @@ -5,3 +5,9 @@ CFLAGS_append_mx6 = " -DLINUX \ | |||
| 5 | base_contains('DISTRO_FEATURES', 'wayland', '-DEGL_API_FB -DEGL_API_WL', \ | 5 | base_contains('DISTRO_FEATURES', 'wayland', '-DEGL_API_FB -DEGL_API_WL', \ |
| 6 | base_contains('DISTRO_FEATURES', 'directfb', '-DEGL_API_DFB', \ | 6 | base_contains('DISTRO_FEATURES', 'directfb', '-DEGL_API_DFB', \ |
| 7 | '-DEGL_API_FB', d),d),d)}" | 7 | '-DEGL_API_FB', d),d),d)}" |
| 8 | |||
| 9 | PACKAGECONFIG_GL_mx6q = "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'gles2', '', d)}" | ||
| 10 | PACKAGECONFIG_GL_mx6dl = "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'gles2', '', d)}" | ||
| 11 | PACKAGECONFIG_GL_mx6sl = "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', \ | ||
| 12 | base_contains('DISTRO_FEATURES', 'x11', \ | ||
| 13 | 'opengl', '', d), '', d)}" | ||
