2016-07-20 09:30:06 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ATOM_BROWSER_OSR_OUTPUT_DEVICE_H_
|
|
|
|
#define ATOM_BROWSER_OSR_OUTPUT_DEVICE_H_
|
|
|
|
|
2016-07-27 17:44:41 +00:00
|
|
|
#include "base/callback.h"
|
2016-07-20 09:30:06 +00:00
|
|
|
#include "cc/output/software_output_device.h"
|
|
|
|
#include "third_party/skia/include/core/SkBitmap.h"
|
|
|
|
#include "third_party/skia/include/core/SkCanvas.h"
|
2016-07-27 17:19:53 +00:00
|
|
|
#include "base/callback.h"
|
2016-07-20 09:30:06 +00:00
|
|
|
|
|
|
|
namespace atom {
|
2016-07-27 17:19:53 +00:00
|
|
|
|
|
|
|
typedef base::Callback<void(const gfx::Rect&,int,int,void*)> OnPaintCallback;
|
2016-07-20 09:30:06 +00:00
|
|
|
|
|
|
|
class OffScreenOutputDevice : public cc::SoftwareOutputDevice {
|
|
|
|
public:
|
2016-07-27 17:44:41 +00:00
|
|
|
typedef base::Callback<void(const gfx::Rect&,int,int,void*)>
|
|
|
|
OnPaintCallback;
|
|
|
|
|
|
|
|
OffScreenOutputDevice(const OnPaintCallback& callback);
|
2016-07-20 09:30:06 +00:00
|
|
|
~OffScreenOutputDevice();
|
2016-07-27 17:19:53 +00:00
|
|
|
|
|
|
|
void SetPaintCallback(const OnPaintCallback*);
|
2016-07-20 09:30:06 +00:00
|
|
|
|
|
|
|
// void saveSkBitmapToBMPFile(const SkBitmap& skBitmap, const char* path);
|
|
|
|
void Resize(const gfx::Size& pixel_size, float scale_factor) override;
|
|
|
|
|
|
|
|
SkCanvas* BeginPaint(const gfx::Rect& damage_rect) override;
|
|
|
|
|
|
|
|
void EndPaint() override;
|
2016-07-27 17:19:53 +00:00
|
|
|
|
|
|
|
void OnPaint(const gfx::Rect& damage_rect);
|
2016-07-20 09:30:06 +00:00
|
|
|
|
2016-07-27 17:44:41 +00:00
|
|
|
void SetActive(bool active);
|
|
|
|
|
|
|
|
void OnPaint(const gfx::Rect& damage_rect);
|
|
|
|
|
2016-07-20 09:30:06 +00:00
|
|
|
private:
|
2016-07-27 17:44:41 +00:00
|
|
|
const OnPaintCallback callback_;
|
|
|
|
|
|
|
|
bool active_;
|
|
|
|
|
2016-07-20 09:30:06 +00:00
|
|
|
std::unique_ptr<SkCanvas> canvas_;
|
|
|
|
std::unique_ptr<SkBitmap> bitmap_;
|
|
|
|
gfx::Rect pending_damage_rect_;
|
2016-07-27 17:19:53 +00:00
|
|
|
|
|
|
|
std::unique_ptr<const atom::OnPaintCallback> callback_;
|
2016-07-20 09:30:06 +00:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(OffScreenOutputDevice);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_OSR_OUTPUT_DEVICE_H_
|