2010-04-27 06:09:44 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 15:12:37 +04: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 06:09:44 +04:00
|
|
|
|
|
|
|
#include "GLContextProvider.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gl {
|
|
|
|
|
2016-07-25 21:41:00 +03:00
|
|
|
using namespace mozilla::widget;
|
|
|
|
|
|
|
|
already_AddRefed<GLContext>
|
|
|
|
GLContextProviderNull::CreateForCompositorWidget(CompositorWidget* aCompositorWidget, bool aForceAccelerated)
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2010-04-27 06:09:44 +04:00
|
|
|
already_AddRefed<GLContext>
|
2017-01-13 23:16:52 +03:00
|
|
|
GLContextProviderNull::CreateForWindow(nsIWidget* aWidget,
|
|
|
|
bool aWebRender,
|
|
|
|
bool aForceAccelerated)
|
2010-04-27 06:09:44 +04:00
|
|
|
{
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2010-04-27 06:09:44 +04:00
|
|
|
}
|
|
|
|
|
2014-04-15 18:57:26 +04:00
|
|
|
already_AddRefed<GLContext>
|
|
|
|
GLContextProviderNull::CreateWrappingExisting(void*, void*)
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2010-06-23 13:24:31 +04:00
|
|
|
already_AddRefed<GLContext>
|
2015-05-28 12:45:33 +03:00
|
|
|
GLContextProviderNull::CreateOffscreen(const gfx::IntSize&,
|
2015-02-13 06:00:41 +03:00
|
|
|
const SurfaceCaps&,
|
2016-06-06 23:52:42 +03:00
|
|
|
CreateContextFlags,
|
2016-06-11 05:01:00 +03:00
|
|
|
nsACString* const out_failureId)
|
2014-08-28 03:16:22 +04:00
|
|
|
{
|
2016-06-11 05:01:00 +03:00
|
|
|
*out_failureId = NS_LITERAL_CSTRING("FEATURE_FAILURE_NULL");
|
2014-08-28 03:16:22 +04:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<GLContext>
|
2016-06-18 02:16:59 +03:00
|
|
|
GLContextProviderNull::CreateHeadless(CreateContextFlags, nsACString* const out_failureId)
|
2010-06-23 13:24:31 +04:00
|
|
|
{
|
2016-06-18 02:16:59 +03:00
|
|
|
*out_failureId = NS_LITERAL_CSTRING("FEATURE_FAILURE_NULL");
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2010-06-23 13:24:31 +04:00
|
|
|
}
|
|
|
|
|
2013-02-14 03:26:24 +04:00
|
|
|
GLContext*
|
2015-01-28 23:10:23 +03:00
|
|
|
GLContextProviderNull::GetGlobalContext()
|
2010-04-27 06:09:44 +04:00
|
|
|
{
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2010-04-27 06:09:44 +04:00
|
|
|
}
|
|
|
|
|
2010-07-20 08:05:42 +04:00
|
|
|
void
|
|
|
|
GLContextProviderNull::Shutdown()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-04-27 06:09:44 +04:00
|
|
|
} /* namespace gl */
|
|
|
|
} /* namespace mozilla */
|