I&#39;m trying to figure out how glBlitFramebuffer() is supposed to behave when the source rectangle exceeds the bounds of the read framebuffer.  For example, if the read framebuffer has width 4 and height 1, and the draw framebuffer has width 100 and height 100, what should be the result of these two calls?<br>
<br>glBlitFramebuffer(-1, 0, 3, 1, 0, 0, 9, 1, GL_COLOR_BUFFER_BIT, GL_NEAREST);<br>
glBlitFramebuffer(-1, 0, 3, 1, 0, 0, 9, 1, GL_COLOR_BUFFER_BIT, GL_LINEAR);<br><br>(In other words, the source rect is 4 pixels wide with 1 pixel falling off the left hand edge of the read framebuffer, and the destination rect is 9 pixels wide with all pixels falling within the draw framebuffer).<br>
<br><br>Here is the relevant text from the spec (e.g. GL 4.2 core spec, p316):<br><br>&quot;The actual region taken from the read framebuffer is limited to the intersection of the source buffers being transferred, which may include the color buffer selected by the read buffer, the depth buffer, and/or the stencil buffer depending on mask. The actual region written to the draw framebuffer is limited to the intersection of the destination buffers being written, which may include multiple draw buffers, the depth buffer, and/or the stencil buffer depending on mask. Whether or not the source or destination regions are altered due to these limits, the scaling and offset applied to pixels being transferred is performed as though no such limits were present.&quot;<br>
<br>And then later:<br><br>&quot;If a linear filter is selected and the rules of LINEAR sampling would require sampling outside the bounds of a source buffer, it is as though CLAMP_TO_EDGE texture sampling were being performed. If a linear filter is selected and sampling would be required outside the bounds of the specified source region, but within the bounds of a source buffer, the implementation may choose to clamp while sampling or not.&quot;<br>
<br><br>The behaviour I observe on my nVidia system is: in GL_NEAREST mode, destination pixels that map to a source pixel outside the read framebuffer are clipped out of the blit, and are left unchanged.  So, in the GL_NEAREST call above, the first two destination pixels are left unchanged.  In GL_LINEAR mode, the same set of pixels is clipped off as in GL_LINEAR mode, and the remaining pixels are interpolated as though no clipping had occurred, with CLAMP_TO_EDGE behaviour occurring for situations where linear interpolation would have required reading a non-existent pixel from the read framebuffer.  Notably, this means that the nVidia driver is not simply reducing the size of the source and destination rectangles to eliminate the clipped off pixels, because <br>
<br>glBlitFramebuffer(-1, 0, 3, 1, 0, 0, 9, 1, GL_COLOR_BUFFER_BIT, GL_LINEAR);<br><br>does *not* produce equivalent interpolation to<br><br>glBlitFramebuffer(0, 0, 3, 1, 2, 0, 9, 1, GL_COLOR_BUFFER_BIT, GL_LINEAR);<br><br>
<br>Mesa, on the other hand, never clips.  The behaviour of destination pixels that map to a source pixel outside the read framebuffer depends on whether the read framebuffer is backed by a texture or a renderbuffer.  If it&#39;s backed by a texture, then those pixels are rendered with CLAMP_TO_EDGE behaviour, regardless of whether the blit is GL_LINEAR or GL_NEAREST.  If it&#39;s backed by a renderbuffer, then garbage is written to those pixels.<br>
<br><br>Any opinions on what the correct behaviour is?<br>