From: Mika Isojärvi Date: Thu, 24 Mar 2016 17:48:09 +0000 (+0000) Subject: Merge "Set bit in blit mask to settle ambiguity" into nyc-dev X-Git-Tag: upstream/0.1.0~963 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0946d83ddd6da81a9a6d5fbaa2f8c0093c73a594;hp=91737be0c69cbc4bf9061865cc61bb7681a5b461;p=platform%2Fupstream%2FVK-GL-CTS.git Merge "Set bit in blit mask to settle ambiguity" into nyc-dev am: 78bda03 * commit '78bda03a6167c6697598f3f4497b4f0afb687c0c': Set bit in blit mask to settle ambiguity --- diff --git a/modules/gles31/functional/es31fNegativeBufferApiTests.cpp b/modules/gles31/functional/es31fNegativeBufferApiTests.cpp index aba9705..1d3b046 100644 --- a/modules/gles31/functional/es31fNegativeBufferApiTests.cpp +++ b/modules/gles31/functional/es31fNegativeBufferApiTests.cpp @@ -1487,7 +1487,7 @@ void blit_framebuffer (NegativeTestContext& ctx) ctx.beginSection("GL_INVALID_OPERATION is generated if the source and destination buffers are identical."); ctx.glBindFramebuffer (GL_DRAW_FRAMEBUFFER, fbo[0]); ctx.expectError (GL_NO_ERROR); - ctx.glBlitFramebuffer (0, 0, 16, 16, 0, 0, 16, 16, 0, GL_NEAREST); + ctx.glBlitFramebuffer (0, 0, 16, 16, 0, 0, 16, 16, GL_DEPTH_BUFFER_BIT, GL_NEAREST); ctx.expectError (GL_INVALID_OPERATION); // restore ctx.glBindFramebuffer (GL_DRAW_FRAMEBUFFER, fbo[1]);