mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
silence used var warnings
This commit is contained in:
parent
0b26e826bd
commit
ec9bbac7c7
1 changed files with 2 additions and 1 deletions
|
|
@ -845,7 +845,8 @@ fast_copy_pixels(GLcontext *ctx,
|
|||
srcRb = srcFb->_DepthBuffer;
|
||||
dstRb = dstFb->_DepthBuffer;
|
||||
}
|
||||
else if (type == GL_DEPTH_STENCIL_EXT) {
|
||||
else {
|
||||
ASSERT(type == GL_DEPTH_STENCIL_EXT);
|
||||
/* XXX correct? */
|
||||
srcRb = srcFb->Attachment[BUFFER_DEPTH].Renderbuffer;
|
||||
dstRb = dstFb->Attachment[BUFFER_DEPTH].Renderbuffer;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue