~mmach/netext73/webkit2gtk

« back to all changes in this revision

Viewing changes to Source/ThirdParty/ANGLE/src/libANGLE/renderer/gl/eagl/ContextEAGL.h

  • Committer: mmach
  • Date: 2023-06-16 17:21:37 UTC
  • Revision ID: netbit73@gmail.com-20230616172137-2rqx6yr96ga9g3kp
1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// Copyright 2020 The ANGLE Project Authors. All rights reserved.
 
3
// Use of this source code is governed by a BSD-style license that can be
 
4
// found in the LICENSE file.
 
5
//
 
6
 
 
7
// ContextEAGL:
 
8
//   iOS-specific subclass of ContextGL.
 
9
//
 
10
 
 
11
#ifndef LIBANGLE_RENDERER_GL_EAGL_CONTEXTEAGL_H_
 
12
#define LIBANGLE_RENDERER_GL_EAGL_CONTEXTEAGL_H_
 
13
 
 
14
#include "libANGLE/renderer/gl/ContextGL.h"
 
15
#include "libANGLE/renderer/gl/RendererGL.h"
 
16
 
 
17
namespace rx
 
18
{
 
19
 
 
20
class ContextEAGL : public ContextGL
 
21
{
 
22
  public:
 
23
    ContextEAGL(const gl::State &state,
 
24
                gl::ErrorSet *errorSet,
 
25
                const std::shared_ptr<RendererGL> &renderer);
 
26
};
 
27
 
 
28
}  // namespace rx
 
29
 
 
30
#endif  // LIBANGLE_RENDERER_GL_EAGL_CONTEXTEAGL_H_