2010-04-27 02:09:44 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* 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/. */
|
2010-04-27 02:09:44 +00:00
|
|
|
|
|
|
|
#ifndef GLCONTEXTPROVIDER_H_
|
|
|
|
#define GLCONTEXTPROVIDER_H_
|
|
|
|
|
|
|
|
#include "GLContext.h"
|
|
|
|
#include "gfxTypes.h"
|
|
|
|
#include "gfxPoint.h"
|
|
|
|
#include "nsAutoPtr.h"
|
2013-02-13 23:26:24 +00:00
|
|
|
#include "SurfaceTypes.h"
|
2010-04-27 02:09:44 +00:00
|
|
|
|
|
|
|
class nsIWidget;
|
2010-06-23 09:24:31 +00:00
|
|
|
class gfxASurface;
|
2010-04-27 02:09:44 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gl {
|
|
|
|
|
2010-07-19 05:01:14 +00:00
|
|
|
#define IN_GL_CONTEXT_PROVIDER_H
|
|
|
|
|
2012-09-07 22:35:22 +00:00
|
|
|
// Null is always there
|
2010-07-19 05:01:14 +00:00
|
|
|
#define GL_CONTEXT_PROVIDER_NAME GLContextProviderNull
|
|
|
|
#include "GLContextProviderImpl.h"
|
|
|
|
#undef GL_CONTEXT_PROVIDER_NAME
|
|
|
|
|
|
|
|
#ifdef XP_WIN
|
|
|
|
#define GL_CONTEXT_PROVIDER_NAME GLContextProviderWGL
|
|
|
|
#include "GLContextProviderImpl.h"
|
|
|
|
#undef GL_CONTEXT_PROVIDER_NAME
|
|
|
|
#define GL_CONTEXT_PROVIDER_DEFAULT GLContextProviderWGL
|
|
|
|
#define DEFAULT_IMPL WGL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
#define GL_CONTEXT_PROVIDER_NAME GLContextProviderCGL
|
|
|
|
#include "GLContextProviderImpl.h"
|
|
|
|
#undef GL_CONTEXT_PROVIDER_NAME
|
|
|
|
#define GL_CONTEXT_PROVIDER_DEFAULT GLContextProviderCGL
|
|
|
|
#endif
|
|
|
|
|
2010-08-07 05:09:18 +00:00
|
|
|
#if defined(ANDROID) || defined(MOZ_PLATFORM_MAEMO) || defined(XP_WIN)
|
2010-07-19 05:01:14 +00:00
|
|
|
#define GL_CONTEXT_PROVIDER_NAME GLContextProviderEGL
|
|
|
|
#include "GLContextProviderImpl.h"
|
|
|
|
#undef GL_CONTEXT_PROVIDER_NAME
|
2010-08-07 05:09:18 +00:00
|
|
|
#ifndef GL_CONTEXT_PROVIDER_DEFAULT
|
2010-07-19 05:01:14 +00:00
|
|
|
#define GL_CONTEXT_PROVIDER_DEFAULT GLContextProviderEGL
|
|
|
|
#endif
|
2010-08-07 05:09:18 +00:00
|
|
|
#endif
|
2010-07-19 05:01:14 +00:00
|
|
|
|
2013-04-30 03:16:04 +00:00
|
|
|
#ifdef MOZ_GL_PROVIDER
|
|
|
|
#define GL_CONTEXT_PROVIDER_NAME MOZ_GL_PROVIDER
|
2010-07-19 05:01:14 +00:00
|
|
|
#include "GLContextProviderImpl.h"
|
|
|
|
#undef GL_CONTEXT_PROVIDER_NAME
|
2013-04-30 03:16:04 +00:00
|
|
|
#define GL_CONTEXT_PROVIDER_DEFAULT MOZ_GL_PROVIDER
|
2010-07-19 05:01:14 +00:00
|
|
|
#endif
|
|
|
|
|
2013-04-30 03:16:04 +00:00
|
|
|
#if defined(MOZ_X11) && !defined(GL_CONTEXT_PROVIDER_DEFAULT)
|
|
|
|
#define GL_CONTEXT_PROVIDER_NAME GLContextProviderGLX
|
2012-03-23 18:43:52 +00:00
|
|
|
#include "GLContextProviderImpl.h"
|
|
|
|
#undef GL_CONTEXT_PROVIDER_NAME
|
2013-04-30 03:16:04 +00:00
|
|
|
#define GL_CONTEXT_PROVIDER_DEFAULT GLContextProviderGLX
|
2012-03-23 18:43:52 +00:00
|
|
|
#endif
|
|
|
|
|
2010-07-19 05:01:14 +00:00
|
|
|
#ifdef GL_CONTEXT_PROVIDER_DEFAULT
|
|
|
|
typedef GL_CONTEXT_PROVIDER_DEFAULT GLContextProvider;
|
|
|
|
#else
|
|
|
|
typedef GLContextProviderNull GLContextProvider;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef IN_GL_CONTEXT_PROVIDER_H
|
2010-04-27 02:09:44 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|