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/. */
|
|
|
|
|
|
|
|
#ifndef MOZILLA_GFX_RENDERCOMPOSITOR_H
|
|
|
|
#define MOZILLA_GFX_RENDERCOMPOSITOR_H
|
|
|
|
|
|
|
|
#include "mozilla/RefPtr.h"
|
2018-03-29 05:23:31 +03:00
|
|
|
#include "mozilla/UniquePtr.h"
|
|
|
|
#include "Units.h"
|
2018-01-15 16:22:15 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
namespace gl {
|
|
|
|
class GLContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace layers {
|
|
|
|
class SyncObjectHost;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace widget {
|
|
|
|
class CompositorWidget;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace wr {
|
|
|
|
|
|
|
|
class RenderCompositor {
|
|
|
|
public:
|
|
|
|
static UniquePtr<RenderCompositor> Create(
|
|
|
|
RefPtr<widget::CompositorWidget>&& aWidget);
|
|
|
|
|
|
|
|
RenderCompositor(RefPtr<widget::CompositorWidget>&& aWidget);
|
|
|
|
virtual ~RenderCompositor();
|
|
|
|
|
|
|
|
virtual bool BeginFrame() = 0;
|
|
|
|
virtual void EndFrame() = 0;
|
2018-11-12 04:36:13 +03:00
|
|
|
virtual void WaitForGPU() = 0;
|
2018-01-15 16:22:15 +03:00
|
|
|
virtual void Pause() = 0;
|
|
|
|
virtual bool Resume() = 0;
|
|
|
|
|
|
|
|
virtual gl::GLContext* gl() const { return nullptr; }
|
|
|
|
|
2018-10-04 05:54:50 +03:00
|
|
|
virtual bool MakeCurrent();
|
|
|
|
|
2018-01-15 16:22:15 +03:00
|
|
|
virtual bool UseANGLE() const { return false; }
|
|
|
|
|
2018-07-20 16:58:40 +03:00
|
|
|
virtual bool UseDComp() const { return false; }
|
|
|
|
|
2018-11-05 12:58:37 +03:00
|
|
|
virtual bool UseTripleBuffering() const { return false; }
|
|
|
|
|
2018-02-01 15:39:31 +03:00
|
|
|
virtual LayoutDeviceIntSize GetBufferSize() = 0;
|
2018-01-15 16:22:15 +03:00
|
|
|
|
|
|
|
widget::CompositorWidget* GetWidget() const { return mWidget; }
|
|
|
|
|
|
|
|
layers::SyncObjectHost* GetSyncObject() const { return mSyncObject.get(); }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
RefPtr<widget::CompositorWidget> mWidget;
|
|
|
|
RefPtr<layers::SyncObjectHost> mSyncObject;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace wr
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif
|