From 4c4534135318f5c80f67571d5a484607fce15484 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 22 Jul 2016 15:50:33 +0200 Subject: [PATCH] Test also using Framebuffer::DrawAttachment::None. --- src/Magnum/Test/FramebufferGLTest.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Magnum/Test/FramebufferGLTest.cpp b/src/Magnum/Test/FramebufferGLTest.cpp index ccbf8be8a..9c9c8a655 100644 --- a/src/Magnum/Test/FramebufferGLTest.cpp +++ b/src/Magnum/Test/FramebufferGLTest.cpp @@ -949,7 +949,8 @@ void FramebufferGLTest::multipleColorOutputs() { .attachTexture(Framebuffer::ColorAttachment(1), color2, 0) .attachRenderbuffer(Framebuffer::BufferAttachment::Depth, depth) .mapForDraw({{0, Framebuffer::ColorAttachment(1)}, - {1, Framebuffer::ColorAttachment(0)}}); + {1, Framebuffer::ColorAttachment(0)}, + {2, Framebuffer::DrawAttachment::None}}); #ifdef MAGNUM_TARGET_GLES2 if(Context::current().isExtensionSupported())