Bug 1670014 Comment 0 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

Currently we query the backbuffer's age in `RenderCompositorEGL::BeginFrame()`. This makes the driver dequeue a backbuffer, may cause the driver to block until a buffer is available. (See bug 1668878.) We should delay calling this until necessary (in `Renderer::composite_simple()`) to increase the chances that the backbuffer is available.
Currently we query the backbuffer's age in `RenderCompositorEGL::BeginFrame()`. This makes the driver dequeue a backbuffer, which may cause the driver to block until a buffer is available. (See bug 1668878.) We should delay calling this until necessary (in `Renderer::composite_simple()`) to increase the chances that the backbuffer is available.

Back to Bug 1670014 Comment 0