chromium/third_party/angle/src/libANGLE/ShareGroup.h

//
// Copyright 2023 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.
//

// ShareGroup.h: Defines the egl::ShareGroup class, representing the collection of contexts in a
// share group.

#ifndef LIBANGLE_SHAREGROUP_H_
#define LIBANGLE_SHAREGROUP_H_

#include <mutex>
#include <vector>

#include "libANGLE/Context.h"

namespace gl
{
class Context;
}  // namespace gl

namespace rx
{
class EGLImplFactory;
class ShareGroupImpl;
}  // namespace rx

namespace egl
{
ContextMap;

class ShareGroupState final : angle::NonCopyable
{};

class ShareGroup final : angle::NonCopyable
{};

}  // namespace egl

#endif  // LIBANGLE_SHAREGROUP_H_