2018-01-15 16:22:15 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 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/. */
|
|
|
|
|
|
|
|
#include "RenderCompositor.h"
|
|
|
|
|
|
|
|
#include "GLContext.h"
|
2018-01-19 05:01:04 +03:00
|
|
|
#include "mozilla/gfx/gfxVars.h"
|
2018-01-15 16:22:15 +03:00
|
|
|
#include "mozilla/layers/SyncObject.h"
|
|
|
|
#include "mozilla/webrender/RenderCompositorOGL.h"
|
|
|
|
#include "mozilla/widget/CompositorWidget.h"
|
|
|
|
|
2018-01-19 05:01:04 +03:00
|
|
|
#ifdef XP_WIN
|
|
|
|
#include "mozilla/webrender/RenderCompositorANGLE.h"
|
|
|
|
#endif
|
|
|
|
|
2018-01-15 16:22:15 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace wr {
|
|
|
|
|
|
|
|
/* static */ UniquePtr<RenderCompositor> RenderCompositor::Create(
|
|
|
|
RefPtr<widget::CompositorWidget>&& aWidget) {
|
2018-01-19 05:01:04 +03:00
|
|
|
#ifdef XP_WIN
|
|
|
|
if (gfx::gfxVars::UseWebRenderANGLE()) {
|
2018-05-30 22:15:35 +03:00
|
|
|
return RenderCompositorANGLE::Create(std::move(aWidget));
|
2018-01-19 05:01:04 +03:00
|
|
|
}
|
|
|
|
#endif
|
2018-05-30 22:15:35 +03:00
|
|
|
return RenderCompositorOGL::Create(std::move(aWidget));
|
2018-01-15 16:22:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
RenderCompositor::RenderCompositor(RefPtr<widget::CompositorWidget>&& aWidget)
|
|
|
|
: mWidget(aWidget) {}
|
|
|
|
|
|
|
|
RenderCompositor::~RenderCompositor() {}
|
|
|
|
|
2018-10-04 05:54:50 +03:00
|
|
|
bool RenderCompositor::MakeCurrent() { return gl()->MakeCurrent(); }
|
|
|
|
|
2018-01-15 16:22:15 +03:00
|
|
|
} // namespace wr
|
|
|
|
} // namespace mozilla
|