mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 06:15:38 +00:00
Merge pull request #967 from MaddTheSane/patch-1
Make context_agl.h compatible with ObjC ARC code.
This commit is contained in:
commit
49bd23d32c
|
@ -8,6 +8,7 @@
|
|||
struct NSOpenGLContext;
|
||||
struct NSOpenGLPixelFormat;
|
||||
struct NSView;
|
||||
#define __bridge
|
||||
#endif
|
||||
|
||||
namespace GL {
|
||||
|
@ -31,7 +32,7 @@ public:
|
|||
std::unique_ptr<Context> CreateSharedContext(const WindowInfo& wi) override;
|
||||
|
||||
private:
|
||||
ALWAYS_INLINE NSView* GetView() const { return static_cast<NSView*>(m_wi.window_handle); }
|
||||
ALWAYS_INLINE NSView* GetView() const { return static_cast<NSView*>((__bridge NSView*)m_wi.window_handle); }
|
||||
|
||||
bool Initialize(const Version* versions_to_try, size_t num_versions_to_try);
|
||||
bool CreateContext(NSOpenGLContext* share_context, int profile, bool make_current);
|
||||
|
|
Loading…
Reference in a new issue