// // Copyright 2019 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. // // TextureExternalUpdateTest.cpp: Tests for GL_ANGLE_texture_external_update #include "test_utils/ANGLETest.h" #include "test_utils/gl_raii.h" namespace angle { class TextureExternalUpdateTest : public ANGLETest<> { … }; // Test basic usage of glInvalidateTextureANGLE TEST_P(TextureExternalUpdateTest, Invalidate) { … } // Test basic usage of glTexImage2DExternalANGLE TEST_P(TextureExternalUpdateTest, TexImage2DExternal) { … } // Test the native ID query TEST_P(TextureExternalUpdateTest, NativeID) { … } // Use this to select which configurations (e.g. which renderer, which GLES major version) these // tests should be run against. ANGLE_INSTANTIATE_TEST_ES2_AND_ES3(…); } // namespace angle