blob: 7275225851a992e7a2ab05d62759a8d98090b6f2 [file] [log] [blame]
/*
* Copyright 2016 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef COBALT_RENDERER_RASTERIZER_BLITTER_IMAGE_H_
#define COBALT_RENDERER_RASTERIZER_BLITTER_IMAGE_H_
#include <string>
#include "base/memory/aligned_memory.h"
#include "base/memory/scoped_ptr.h"
#include "base/optional.h"
#include "cobalt/base/polymorphic_downcast.h"
#include "cobalt/render_tree/font.h"
#include "cobalt/render_tree/font_provider.h"
#include "cobalt/render_tree/image.h"
#include "cobalt/render_tree/resource_provider.h"
#include "cobalt/renderer/rasterizer/skia/image.h"
#include "starboard/blitter.h"
#if SB_HAS(BLITTER)
namespace cobalt {
namespace renderer {
namespace rasterizer {
namespace blitter {
// render_tree::ImageData objects are implemented in the Blitter API via the
// SbBlitterPixelData objects, which is conceptually an exact match for
// ImageData.
class ImageData : public render_tree::ImageData {
public:
ImageData(SbBlitterDevice device, const math::Size& size,
render_tree::PixelFormat pixel_format,
render_tree::AlphaFormat alpha_format);
~ImageData() OVERRIDE;
const render_tree::ImageDataDescriptor& GetDescriptor() const OVERRIDE {
return descriptor_;
}
uint8* GetMemory() OVERRIDE;
SbBlitterPixelData TakePixelData();
SbBlitterDevice device() { return device_; }
private:
SbBlitterDevice device_;
SbBlitterPixelData pixel_data_;
render_tree::ImageDataDescriptor descriptor_;
};
// render_tree::Image objects are implemented in the Blitter API via
// SbBlitterSurface objects, which are conceptually an exact match for Image.
// We derive from skia::SinglePlaneImage here because it is possible for
// render tree nodes referencing blitter:Images to be passed into a Skia
// software renderer. Thus, SinglePlaneImage is implemented such
// that Skia render tree node visitors can also render it.
class SinglePlaneImage : public skia::SinglePlaneImage {
public:
explicit SinglePlaneImage(scoped_ptr<ImageData> image_data);
const math::Size& GetSize() const OVERRIDE { return size_; }
SbBlitterSurface surface() const { return surface_; }
// Overrides from skia::SinglePlaneImage.
void EnsureInitialized() OVERRIDE;
// When GetBitmap() is called on a blitter::SinglePlaneImage for the first
// time, we do a one-time download of the pixel data from the Blitter API
// surface into a SkBitmap.
const SkBitmap& GetBitmap() const OVERRIDE;
private:
~SinglePlaneImage() OVERRIDE;
math::Size size_;
SbBlitterSurface surface_;
// This field is populated when GetBitmap() is called for the first time, and
// after that is never modified.
mutable base::optional<SkBitmap> bitmap_;
};
} // namespace blitter
} // namespace rasterizer
} // namespace renderer
} // namespace cobalt
#endif // #if SB_HAS(BLITTER)
#endif // COBALT_RENDERER_RASTERIZER_BLITTER_IMAGE_H_