File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -812,7 +812,7 @@ bool wxGLCanvasEGL::SwapBuffers()
812
812
// Trying to draw on a hidden window is useless and can actually be
813
813
// harmful if the compositor blocks in eglSwapBuffers() in this
814
814
// case, so avoid it.
815
- wxLogTrace (TRACE_EGL, " Not drawing hidden window " );
815
+ wxLogTrace (TRACE_EGL, " Window %p is hidden, not drawing " , this );
816
816
return false ;
817
817
}
818
818
}
@@ -825,7 +825,7 @@ bool wxGLCanvasEGL::SwapBuffers()
825
825
// worst if we're called before the window is realized.
826
826
if ( !m_readyToDraw )
827
827
{
828
- wxLogTrace (TRACE_EGL, " Not ready to draw yet" );
828
+ wxLogTrace (TRACE_EGL, " Window %p is not not ready to draw yet" , this );
829
829
return false ;
830
830
}
831
831
@@ -838,7 +838,7 @@ bool wxGLCanvasEGL::SwapBuffers()
838
838
}
839
839
#endif // GDK_WINDOWING_WAYLAND
840
840
841
- wxLogTrace (TRACE_EGL, " Swapping buffers" );
841
+ wxLogTrace (TRACE_EGL, " Swapping buffers for window %p " , this );
842
842
843
843
return eglSwapBuffers (m_display, m_surface);
844
844
}
You can’t perform that action at this time.
0 commit comments