aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGert Wollny <gert.wollny@collabora.com>2021-07-12 21:44:24 +0200
committerAngle LUCI CQ <angle-scoped@luci-project-accounts.iam.gserviceaccount.com>2021-07-16 09:40:46 +0000
commit1d2c60da34d82f1d67dfe260bcbf87aca0a3ff29 (patch)
treec6ae891fd4735b28b022657664ee22782f4abb3b
parentab440fe932ff235f228bf4f4efd214869bb87504 (diff)
downloadangle-1d2c60da34d82f1d67dfe260bcbf87aca0a3ff29.tar.gz
tests: GL_NUM_BINARY_FORMATS is a ES 3.0 property
Enable according test. Bug: angleproject:6165 Change-Id: Idb0908024ebce485ac182463a02eba415f0ffec8 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/3024207 Commit-Queue: Gert Wollny <gert.wollny@collabora.com> Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Cody Northrop <cnorthrop@google.com>
-rw-r--r--src/tests/capture_replay_tests/capture_replay_expectations.txt1
-rw-r--r--src/tests/egl_tests/EGLPrintEGLinfoTest.cpp3
2 files changed, 1 insertions, 3 deletions
diff --git a/src/tests/capture_replay_tests/capture_replay_expectations.txt b/src/tests/capture_replay_tests/capture_replay_expectations.txt
index 1c8df0b637..93cbe47b2d 100644
--- a/src/tests/capture_replay_tests/capture_replay_expectations.txt
+++ b/src/tests/capture_replay_tests/capture_replay_expectations.txt
@@ -35,7 +35,6 @@ ClipDistanceTest.*
CopyCompressedTextureTest.InternalFormat/*
DebugMarkerTest.*
DebugTest.*
-EGLPrintEGLinfoTest.PrintGLESCapabilities/*
EGLStreamTest.*
ExternalWrapTest.*
GetImageTestNoExtensions.EntryPointsInactive/*
diff --git a/src/tests/egl_tests/EGLPrintEGLinfoTest.cpp b/src/tests/egl_tests/EGLPrintEGLinfoTest.cpp
index cc1fe4cbde..ea471e8f2f 100644
--- a/src/tests/egl_tests/EGLPrintEGLinfoTest.cpp
+++ b/src/tests/egl_tests/EGLPrintEGLinfoTest.cpp
@@ -158,7 +158,6 @@ static void LogGles2Capabilities(std::ostream &stream)
constexpr int kMaxViewPortDimsReturnValuesSize = 2;
QUERY_AND_LOG_CAPABILITY_ARRAY(GL_MAX_VIEWPORT_DIMS, kMaxViewPortDimsReturnValuesSize, stream);
QUERY_AND_LOG_CAPABILITY(GL_NUM_COMPRESSED_TEXTURE_FORMATS, stream);
- QUERY_AND_LOG_CAPABILITY(GL_NUM_PROGRAM_BINARY_FORMATS, stream);
QUERY_AND_LOG_CAPABILITY(GL_NUM_SHADER_BINARY_FORMATS, stream);
}
@@ -191,7 +190,7 @@ static void LogGles3Capabilities(std::ostream &stream)
QUERY_AND_LOG_CAPABILITY(GL_MAX_VERTEX_UNIFORM_BLOCKS, stream);
QUERY_AND_LOG_CAPABILITY(GL_MAX_VERTEX_UNIFORM_COMPONENTS, stream);
QUERY_AND_LOG_CAPABILITY(GL_MIN_PROGRAM_TEXEL_OFFSET, stream);
-
+ QUERY_AND_LOG_CAPABILITY(GL_NUM_PROGRAM_BINARY_FORMATS, stream);
// GLES3 capabilities are a superset of GLES2
LogGles2Capabilities(stream);
}