From 1de1dae629667dd79c896906540b1360e78d001a Mon Sep 17 00:00:00 2001 From: Courtney Goeltzenleuchter Date: Wed, 31 Jul 2019 09:59:40 -0600 Subject: [PATCH] Remove illegal parameter use in fbo.completeness dEQP.GLES2.functional.fbo.completeness.renderable.texture was calling glTexImage2D with a internalformat of GL_SRGB8 which is not valid for GLES 2.0 even with GL_EXT_sRGB. Affects: dEQP-GLES2.functional.fbo.completeness.renderable.texture.color0.srgb8 dEQP-GLES2.functional.fbo.completeness.renderable.texture.stencil.srgb8 dEQP-GLES2.functional.fbo.completeness.renderable.texture.depth.srgb8 Components: AOSP VK-GL-CTS issue: 1906 Change-Id: I97003eda10600a0a33e7212b6b5de34c5b2c8848 --- modules/glshared/glsFboCompletenessTests.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/glshared/glsFboCompletenessTests.cpp b/modules/glshared/glsFboCompletenessTests.cpp index 4c71ab9..fea80a6 100644 --- a/modules/glshared/glsFboCompletenessTests.cpp +++ b/modules/glshared/glsFboCompletenessTests.cpp @@ -176,7 +176,6 @@ static const FormatKey s_extSrgbRenderableTexFormats[] = static const FormatKey s_extSrgbNonRenderableTexFormats[] = { GLS_UNSIZED_FORMATKEY(GL_SRGB, GL_UNSIGNED_BYTE), - GL_SRGB8, }; static const FormatKey s_nvSrgbFormatsRboFormats[] = -- 2.7.4