From: Eric Nelson <eric.nelson@boundarydevices.com>
To: Sandoval Gonzalez Leonardo-B42214 <B42214@freescale.com>
Cc: meta-freescale Mailing List <meta-freescale@yoctoproject.org>,
Otavio Salvador <otavio@ossystems.com.br>
Subject: Re: [meta-fsl-arm PATCH 8/8] qt4: Enable OpenGL ES2 support for i.MX6
Date: Thu, 01 Aug 2013 10:40:52 -0700 [thread overview]
Message-ID: <51FA9DA4.7030805@boundarydevices.com> (raw)
In-Reply-To: <44DF7CDEDF8FFF4BB93AB22C1AA1823B8DDCAF@039-SN2MPN1-021.039d.mgd.msft.net>
Thanks Leonardo,
BTW, I'm about to bail on the combination of Qt4/glimagesink 0.10.
The "client-draw-callback" property callbacks work pretty well, and
I was thinking that we could use that to write into Qt's EGL context
(if we could get one), but it seems that there's more to the picture.
In particular:
-- This call to get the display is essentially hardcoded for
/dev/FB0:
https://bitbucket.org/Freescale/gstreamer-gst-plugins-gl/src/3554c07ead40c48620ac8e4864d81988d0b9476b/gst-libs/gst/gl/gstglwindow_fbES2.c?at=0.10#cl-314
-- This call to eglSetCurrent() sets the display to black:
https://bitbucket.org/Freescale/gstreamer-gst-plugins-gl/src/3554c07ead40c48620ac8e4864d81988d0b9476b/gst-libs/gst/gl/gstglwindow_fbES2.c?at=0.10#cl-372
And all of this appears to have been re-structured in upstream
master:
http://cgit.freedesktop.org/gstreamer/gst-plugins-gl/tree/gst-libs/gst/gl
That said, if the OpenGL context in Qt4 isn't accessible, there's
no reason to compile it in.
On 08/01/2013 09:19 AM, Sandoval Gonzalez Leonardo-B42214 wrote:
> I think Francisco did not get last email.
>
> Francisco,
> please mention the testing you did.
>
> Leo
> ________________________________________
> From: otavio.salvador@gmail.com [otavio.salvador@gmail.com] on behalf of Otavio Salvador [otavio@ossystems.com.br]
> Sent: Wednesday, July 31, 2013 10:03 PM
> To: Eric Nelson
> Cc: meta-freescale Mailing List; Sandoval Gonzalez Leonardo-B42214; Carrillodominguez Francisco Alberto-B35153
> Subject: Re: [meta-freescale] [meta-fsl-arm PATCH 8/8] qt4: Enable OpenGL ES2 support for i.MX6
>
> On Tue, Jul 30, 2013 at 3:20 PM, Eric Nelson
> <eric.nelson@boundarydevices.com> wrote:
>> Hi all,
>>
>>
>> On 07/17/2013 11:17 AM, Otavio Salvador wrote:
>>>
>>> The Vivante libraries need some special linking as it has a more
>>> modular design which thus require a specific set of mkspec changes to
>>> make it to work. This change makes the linking to work when building
>>> against Vivante libraries for i.MX6 SoCs.
>>>
>>>
>>> <snip>
>>
>>>
>>>
>>> diff --git a/recipes-qt/qt4/qt4-x11-free_4.8.5.bbappend
>>> b/recipes-qt/qt4/qt4-x11-free_4.8.5.bbappend
>>> index 74bfb31..4c4d0c9 100644
>>> --- a/recipes-qt/qt4/qt4-x11-free_4.8.5.bbappend
>>> +++ b/recipes-qt/qt4/qt4-x11-free_4.8.5.bbappend
>>> @@ -9,6 +9,7 @@ PACKAGE_ARCH_mx5 = "${MACHINE_ARCH}"
>>> QT_GLFLAGS_mx5 = "-opengl es2 -openvg"
>>> QT_CONFIG_FLAGS_append_mx5 = " -I${STAGING_KERNEL_DIR}/include/"
>>>
>>> -DEPENDS_append_mx6 = " virtual/kernel"
>>> +DEPENDS_append_mx6 = " virtual/kernel virtual/libgles2"
>>> PACKAGE_ARCH_mx6 = "${MACHINE_ARCH}"
>>> -QT_CONFIG_FLAGS_append_mx6 = " -I${STAGING_KERNEL_DIR}/include/"
>>> +QT_GLFLAGS_mx6 = "-opengl es2 -openvg"
>>> +QT_CONFIG_FLAGS_append_mx6 = " -I${STAGING_KERNEL_DIR}/include/ -DLINUX=1
>>> -DEGL_API_FB=1"
>>> diff --git a/recipes-qt/qt4/qt4/mx6/g++.conf
>>> b/recipes-qt/qt4/qt4/mx6/g++.conf
>>
>>
>> This patch seems to work perfectly for me, but I'm a bit confused
>> about what it actually enables in Qt.
>>
>> Neither the QGLWidget examples like hellogl_es2 or the QML-based
>> shadereffects demos seem to run.
>>
>> Is there a sample program that shows how to access OpenGL/ES from Qt?
>>
>> I'm trying to grok what the glue between glimagesink and a Qt
>> application should look like.
>
> I am adding Leonardo and Francisco, who did the tests on this, so they comment.
>
> --
> Otavio Salvador O.S. Systems
> http://www.ossystems.com.br http://projetos.ossystems.com.br
> Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750
>
>
next prev parent reply other threads:[~2013-08-01 17:41 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-17 18:17 [meta-fsl-arm PATCH 1/8] imx-lib.inc: Remove unused assignment for FILES definition Otavio Salvador
2013-07-17 18:17 ` [meta-fsl-arm PATCH 2/8] imx-lib.inc: Add .so files in imx-lib package Otavio Salvador
2013-07-17 18:17 ` [meta-fsl-arm PATCH 3/8] u-boot-fslc: Update to 2013.07-rc3 release Otavio Salvador
2013-07-17 18:20 ` Fabio Estevam
2013-07-17 18:17 ` [meta-fsl-arm PATCH 4/8] gpu-viv-bin-mx6q.inc: Keep library package suffix for OpenGL interfaces Otavio Salvador
2013-07-17 18:17 ` [meta-fsl-arm PATCH 5/8] gpu-viv-bin-mx6q.inc: Fix soname of libGL library Otavio Salvador
2013-07-17 19:32 ` John Weber
2013-07-17 19:45 ` Otavio Salvador
2013-07-17 18:17 ` [meta-fsl-arm PATCH 6/8] gst-fsl-plugin: Add PACKAGECONFIG options Otavio Salvador
2013-07-17 18:17 ` [meta-fsl-arm PATCH 7/8] gst-fsl-plugin: Drop 2.0.3 patches which were kept around by mistake Otavio Salvador
2013-07-17 18:17 ` [meta-fsl-arm PATCH 8/8] qt4: Enable OpenGL ES2 support for i.MX6 Otavio Salvador
2013-07-30 18:20 ` Eric Nelson
2013-08-01 3:03 ` Otavio Salvador
2013-08-01 16:19 ` Sandoval Gonzalez Leonardo-B42214
2013-08-01 17:40 ` Eric Nelson [this message]
2013-08-01 18:10 ` Carrillodominguez Francisco Alberto-B35153
2013-08-01 18:14 ` Eric Nelson
2013-08-05 21:32 ` Carrillodominguez Francisco Alberto-B35153
2013-08-05 22:57 ` Eric Nelson
2013-08-06 13:58 ` Sandoval Gonzalez Leonardo-B42214
2013-08-06 14:03 ` Eric Nelson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=51FA9DA4.7030805@boundarydevices.com \
--to=eric.nelson@boundarydevices.com \
--cc=B42214@freescale.com \
--cc=meta-freescale@yoctoproject.org \
--cc=otavio@ossystems.com.br \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.