// // Copyright 2016 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. // // SyncQueriesTest.cpp: Tests of the GL_CHROMIUM_sync_query extension #include "test_utils/ANGLETest.h" namespace angle { class SyncQueriesTest : public ANGLETest<> { … }; // Test basic usage of sync queries TEST_P(SyncQueriesTest, Basic) { … } // Test that the sync query enums are not accepted unless the extension is available TEST_P(SyncQueriesTest, Validation) { … } // 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