/* -*- 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 GLCONTEXTGLX_H_ #define GLCONTEXTGLX_H_ #include "GLContext.h" #include "GLXLibrary.h" namespace mozilla { namespace gl { class GLContextGLX : public GLContext { public: static already_AddRefed CreateGLContext(const SurfaceCaps& caps, GLContextGLX* shareContext, bool isOffscreen, Display* display, GLXDrawable drawable, GLXFBConfig cfg, bool deleteDrawable, gfxXlibSurface* pixmap = nullptr); ~GLContextGLX(); virtual GLContextType GetContextType() MOZ_OVERRIDE { return ContextTypeGLX; } static GLContextGLX* Cast(GLContext* gl) { MOZ_ASSERT(gl->GetContextType() == ContextTypeGLX); return static_cast(gl); } bool Init(); bool MakeCurrentImpl(bool aForce = false); virtual bool IsCurrent(); bool SetupLookupFunction(); bool IsDoubleBuffered(); bool SupportsRobustness(); bool SwapBuffers(); private: friend class GLContextProviderGLX; GLContextGLX(const SurfaceCaps& caps, GLContext* shareContext, bool isOffscreen, Display *aDisplay, GLXDrawable aDrawable, GLXContext aContext, bool aDeleteDrawable, bool aDoubleBuffered, gfxXlibSurface *aPixmap); GLXContext mContext; Display *mDisplay; GLXDrawable mDrawable; bool mDeleteDrawable; bool mDoubleBuffered; GLXLibrary* mGLX; nsRefPtr mPixmap; }; } } #endif // GLCONTEXTGLX_H_