// // 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. // // EGLSync.h: Defines the egl::Sync classes, which support the EGL_KHR_fence_sync, // EGL_KHR_wait_sync and EGL 1.5 sync objects. #ifndef LIBANGLE_EGLSYNC_H_ #define LIBANGLE_EGLSYNC_H_ #include "libANGLE/Debug.h" #include "libANGLE/Error.h" #include "libANGLE/RefCountObject.h" #include "common/angleutils.h" namespace rx { class EGLImplFactory; class EGLSyncImpl; } // namespace rx namespace gl { class Context; } // namespace gl namespace egl { class Sync final : public LabeledObject { … }; } // namespace egl #endif // LIBANGLE_FENCE_H_