2014-01-08 00:02:18 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* vim: set ts=8 sts=4 et sw=4 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef GLCONTEXTCGL_H_
|
|
|
|
#define GLCONTEXTCGL_H_
|
|
|
|
|
|
|
|
#include "GLContext.h"
|
|
|
|
|
|
|
|
#include "OpenGL/OpenGL.h"
|
|
|
|
|
|
|
|
#ifdef __OBJC__
|
|
|
|
#include <AppKit/NSOpenGL.h>
|
|
|
|
#else
|
|
|
|
typedef void NSOpenGLContext;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gl {
|
|
|
|
|
|
|
|
class GLContextCGL : public GLContext
|
|
|
|
{
|
|
|
|
friend class GLContextProviderCGL;
|
|
|
|
|
2018-10-12 03:18:12 +03:00
|
|
|
NSOpenGLContext* const mContext;
|
2014-01-08 00:02:18 +04:00
|
|
|
|
|
|
|
public:
|
2015-03-21 19:28:04 +03:00
|
|
|
MOZ_DECLARE_REFCOUNTED_VIRTUAL_TYPENAME(GLContextCGL, override)
|
2016-06-07 02:27:43 +03:00
|
|
|
GLContextCGL(CreateContextFlags flags, const SurfaceCaps& caps,
|
2017-03-15 23:14:03 +03:00
|
|
|
NSOpenGLContext* context, bool isOffscreen);
|
2014-01-08 00:02:18 +04:00
|
|
|
|
|
|
|
~GLContextCGL();
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual GLContextType GetContextType() const override { return GLContextType::CGL; }
|
2014-01-08 00:02:18 +04:00
|
|
|
|
|
|
|
static GLContextCGL* Cast(GLContext* gl) {
|
2014-01-10 22:55:24 +04:00
|
|
|
MOZ_ASSERT(gl->GetContextType() == GLContextType::CGL);
|
2014-01-08 00:02:18 +04:00
|
|
|
return static_cast<GLContextCGL*>(gl);
|
|
|
|
}
|
2014-01-08 00:02:18 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
bool Init() override;
|
2014-01-08 00:02:18 +04:00
|
|
|
|
|
|
|
NSOpenGLContext* GetNSOpenGLContext() const { return mContext; }
|
|
|
|
CGLContextObj GetCGLContext() const;
|
|
|
|
|
2017-08-15 23:21:37 +03:00
|
|
|
virtual bool MakeCurrentImpl() const override;
|
2014-01-08 00:02:18 +04:00
|
|
|
|
2017-08-11 23:54:40 +03:00
|
|
|
virtual bool IsCurrentImpl() const override;
|
2014-01-08 00:02:18 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual GLenum GetPreferredARGB32Format() const override;
|
2014-01-08 00:02:18 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool SetupLookupFunction() override;
|
2014-01-08 00:02:18 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool IsDoubleBuffered() const override;
|
2014-01-08 00:02:18 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool SwapBuffers() override;
|
2017-01-31 05:58:52 +03:00
|
|
|
|
|
|
|
virtual void GetWSIInfo(nsCString* const out) const override;
|
2014-01-08 00:02:18 +04:00
|
|
|
};
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace gl
|
|
|
|
} // namespace mozilla
|
2014-01-08 00:02:18 +04:00
|
|
|
|
|
|
|
#endif // GLCONTEXTCGL_H_
|