I've got a render buffer setup for doing unique color picking of my scene. It has been rather faithful in producing pure colors and not giving my colors-to-objects translation fits. I put a simple little function at the end of my draw loop to blit it to a corner of my main screen, so I could see what was going on in the selection buffer while I was debugging it...
if(m_ViewSBO)
{
glBindFramebufferEXT(GL_READ_FRAMEBUFFER_EXT, m_SBO);
glBindFramebufferEXT(GL_DRAW_FRAMEBUFFER_EXT, 0);
glBlitFramebufferEXT(0, 0, m_CanvasWidth, m_CanvasHeight,
0, 0, m_CanvasWidth/2, m_CanvasHeight/2,
GL_COLOR_BUFFER_BIT, GL_LINEAR);
glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, 0);
}
A while back I updated my main framebuffer to multisampled in order to get anti-aliasing support, and that broke my simple little blit function. Wasn't a big thing at the time. Now I'm moving fixed functions to use buffers and I'm starting that process with the selection buffer draw functions, because they really are the simplest, but I need to see what's going on.
What are my best options for getting that buffer pasted into my display?
I can make it a multisampled buffer also, but will that give me stray colors, even though I'm turning off lighting and blending?
Would it be pretty straight forward to use it as a texture and map it on a polygon? Bit perfect color doesn't matter when I'm looking at it on screen, only when I'm mapping the buffered colors to item indices.
Is there some other function besides glBlitFramebuffer() that will copy from one buffer into the other with a looser restriction on buffer format?
Any ideas are welcome.
EDIT... As per usual, I had a click-post-epiphany, the simplest fix is turn multisampling off in my main buffer while I'm working on this. Yet I am still curious about the best answer to the question..