On 10/5/05, Kevin Brooks <[EMAIL PROTECTED]> wrote:
> With the double buffering turned on, any drawing is
> pushed onto a stack before the updated window is made
> visible.
>
> Is it possible to reverse the stack just before the
> flush in order to boost the performance?
Unfortunately, the remove/
With the double buffering turned on, any drawing is
pushed onto a stack before the updated window is made
visible.
Is it possible to reverse the stack just before the
flush in order to boost the performance?
Kev
--- John Cupitt <[EMAIL PROTECTED]> wrote:
> On 10/5/05, Kevin Brooks <[EMAIL PROTE
On 10/5/05, Kevin Brooks <[EMAIL PROTECTED]> wrote:
> I don't know how to reverse the rendering order
> though.
I implement a 'pop - to - front' effect with layered widgets with
g_object_ref( thing );
gtk_container_remove( container, thing );
gtk_container_add( container, thing );
g_objec
-Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of Kevin Brooks
> Sent: Sunday, October 02, 2005 1:32 AM
> To: gtk-app-devel-list@gnome.org
> Subject: gtk rendering order
>
> Hello,
>
> I had a gtk window and a gtk button was put
EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin Brooks
Sent: Sunday, October 02, 2005 1:32 AM
To: gtk-app-devel-list@gnome.org
Subject: gtk rendering order
Hello,
I had a gtk window and a gtk button was put on the
window. But the button was totally covered by the
window background when the w
Hello,
I had a gtk window and a gtk button was put on the
window. But the button was totally covered by the
window background when the window background was set
to solid color or image.
Does anyone know how to solve this problem?
I also want to know the rendering order of gtk
widgets.
The gtk w