Fix rendering on Wayland
For unknown reasons, renderTargetId() is not the render target on
Wayland. Instead, QtQuick is made to render into a separate FBO, most
likely because QtWayland has to render window decorations on the actual
window surface, and the FBO indirection serves to take care of the
resulting mess.
renderTargetId() getting misidrected still sounds like a bug to me.
Fortunately, we can just retrieve the actually bound FBO. This works and
must works, or even official Qt examples would break. It's not so good
that we have to retrieve it from the OpenGL state, because in theory a
driver could make it inefficient, but I'd say the risk is low.