From 4eb7cbac47c7d40e2c1469016b54f9323aa36d8f Mon Sep 17 00:00:00 2001 From: Brandon Schaefer Date: Thu, 5 May 2016 05:22:57 -0700 Subject: [PATCH] Mir: Remove workaround for LP bug 1477285 Closes #756. --- src/mir_window.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/mir_window.c b/src/mir_window.c index 26ee5262..ddc70fa6 100644 --- a/src/mir_window.c +++ b/src/mir_window.c @@ -709,11 +709,6 @@ void _glfwPlatformSetCursor(_GLFWwindow* window, _GLFWcursor* cursor) mir_wait_for(mir_surface_configure_cursor(window->mir.surface, cursor->mir.conf)); if (cursor->mir.custom_cursor) { - /* FIXME Bug https://bugs.launchpad.net/mir/+bug/1477285 - Requires a triple buffer swap to get the cursor buffer on top! (since mir is tripled buffered) - */ - mir_buffer_stream_swap_buffers_sync(cursor->mir.custom_cursor); - mir_buffer_stream_swap_buffers_sync(cursor->mir.custom_cursor); mir_buffer_stream_swap_buffers_sync(cursor->mir.custom_cursor); } }