// // 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. // // SempahoreGL.h: Defines the rx::SempahoreGL class, an implementation of SemaphoreImpl. #ifndef LIBANGLE_RENDERER_GL_SEMAPHOREGL_H_ #define LIBANGLE_RENDERER_GL_SEMAPHOREGL_H_ #include "libANGLE/angletypes.h" #include "libANGLE/renderer/SemaphoreImpl.h" namespace rx { class SemaphoreGL : public SemaphoreImpl { … }; } // namespace rx #endif // LIBANGLE_RENDERER_GL_SEMAPHOREGL_H_