From b15ba11e484691c847c7de59af5b86a57b7e4e5d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mika=20Isoj=C3=A4rvi?= Date: Fri, 18 Mar 2016 14:57:34 -0700 Subject: [PATCH] Fix typo in negative buffer API tests Bug: 27745437 Change-Id: I32ad04035df3600adf2eb63ce7aff039d2f26084 --- modules/gles31/functional/es31fNegativeBufferApiTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gles31/functional/es31fNegativeBufferApiTests.cpp b/modules/gles31/functional/es31fNegativeBufferApiTests.cpp index 509d48c..aba9705 100644 --- a/modules/gles31/functional/es31fNegativeBufferApiTests.cpp +++ b/modules/gles31/functional/es31fNegativeBufferApiTests.cpp @@ -1253,7 +1253,7 @@ void framebuffer_texture2d (NegativeTestContext& ctx) ctx.expectError(GL_INVALID_VALUE); ctx.glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, texCube, -1); ctx.expectError(GL_INVALID_VALUE); - ctx.glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D_MULTISAMPLE, tex2D, 1); + ctx.glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D_MULTISAMPLE, tex2DMS, 1); ctx.expectError(GL_INVALID_VALUE); ctx.endSection(); -- 2.7.4