// // Copyright 2024 The ANGLE Project Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // EGLNoErrorTest.cpp: // Tests for the EGL extension EGL_ANGLE_no_error // #include <gtest/gtest.h> #include "test_utils/ANGLETest.h" usingnamespaceangle; class EGLNoErrorTest : public ANGLETest<> { … }; // Validation errors become undefined behavour with this extension. Simply test turning validation // off and on. TEST_P(EGLNoErrorTest, EnableDisable) { … } GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(…); ANGLE_INSTANTIATE_TEST(…);