2012-07-26 17:27:57 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PictureRenderer_DEFINED
|
|
|
|
#define PictureRenderer_DEFINED
|
|
|
|
#include "SkTypes.h"
|
|
|
|
#include "SkTDArray.h"
|
|
|
|
#include "SkRefCnt.h"
|
|
|
|
|
2012-08-20 15:03:33 +00:00
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
#include "GrContextFactory.h"
|
|
|
|
#include "GrContext.h"
|
|
|
|
#endif
|
|
|
|
|
2012-07-26 17:27:57 +00:00
|
|
|
class SkBitmap;
|
|
|
|
class SkCanvas;
|
2012-08-20 15:03:29 +00:00
|
|
|
class SkGLContext;
|
2012-07-26 17:27:57 +00:00
|
|
|
class SkPicture;
|
|
|
|
|
|
|
|
namespace sk_tools {
|
|
|
|
|
|
|
|
class PictureRenderer : public SkRefCnt {
|
|
|
|
public:
|
2012-08-20 15:04:04 +00:00
|
|
|
enum SkDeviceTypes {
|
|
|
|
kBitmap_DeviceType,
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
kGPU_DeviceType
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2012-08-07 17:11:33 +00:00
|
|
|
virtual void init(SkPicture* pict);
|
|
|
|
virtual void render() = 0;
|
|
|
|
virtual void end();
|
2012-08-20 15:03:47 +00:00
|
|
|
virtual void resetState();
|
2012-08-07 17:11:33 +00:00
|
|
|
|
|
|
|
SkCanvas* getCanvas() {
|
|
|
|
return fCanvas.get();
|
|
|
|
}
|
|
|
|
|
2012-08-20 15:04:04 +00:00
|
|
|
void setDeviceType(SkDeviceTypes deviceType) {
|
|
|
|
fDeviceType = deviceType;
|
2012-08-20 15:03:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool isUsingBitmapDevice() {
|
2012-08-20 15:03:44 +00:00
|
|
|
return kBitmap_DeviceType == fDeviceType;
|
2012-08-20 15:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if SK_SUPPORT_GPU
|
2012-08-20 15:03:41 +00:00
|
|
|
bool isUsingGpuDevice() {
|
2012-08-20 15:03:44 +00:00
|
|
|
return kGPU_DeviceType == fDeviceType;
|
2012-08-20 15:03:41 +00:00
|
|
|
}
|
2012-08-20 15:03:47 +00:00
|
|
|
|
|
|
|
SkGLContext* getGLContext() {
|
|
|
|
if (this->isUsingGpuDevice()) {
|
|
|
|
return fGrContextFactory.getGLContext(GrContextFactory::kNative_GLContextType);
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2012-08-20 15:03:29 +00:00
|
|
|
#endif
|
|
|
|
|
2012-08-20 15:03:36 +00:00
|
|
|
PictureRenderer()
|
2012-08-20 15:03:33 +00:00
|
|
|
: fPicture(NULL)
|
|
|
|
, fDeviceType(kBitmap_DeviceType)
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
, fGrContext(fGrContextFactory.get(GrContextFactory::kNative_GLContextType))
|
|
|
|
#endif
|
|
|
|
{}
|
|
|
|
|
2012-08-07 17:11:33 +00:00
|
|
|
protected:
|
2012-08-20 15:03:57 +00:00
|
|
|
SkCanvas* setupCanvas();
|
|
|
|
SkCanvas* setupCanvas(int width, int height);
|
|
|
|
|
2012-08-07 17:11:33 +00:00
|
|
|
SkAutoTUnref<SkCanvas> fCanvas;
|
|
|
|
SkPicture* fPicture;
|
2012-08-20 15:03:29 +00:00
|
|
|
SkDeviceTypes fDeviceType;
|
2012-08-20 15:03:33 +00:00
|
|
|
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
GrContextFactory fGrContextFactory;
|
|
|
|
GrContext* fGrContext;
|
|
|
|
#endif
|
2012-08-07 17:11:33 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
typedef SkRefCnt INHERITED;
|
2012-07-26 17:27:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class PipePictureRenderer : public PictureRenderer {
|
2012-08-01 17:53:29 +00:00
|
|
|
public:
|
2012-08-07 17:11:33 +00:00
|
|
|
virtual void render() SK_OVERRIDE;
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef PictureRenderer INHERITED;
|
2012-07-26 17:27:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class SimplePictureRenderer : public PictureRenderer {
|
2012-08-01 17:53:29 +00:00
|
|
|
public:
|
2012-08-07 17:11:33 +00:00
|
|
|
virtual void render () SK_OVERRIDE;
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef PictureRenderer INHERITED;
|
2012-07-26 17:27:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class TiledPictureRenderer : public PictureRenderer {
|
|
|
|
public:
|
|
|
|
TiledPictureRenderer();
|
|
|
|
|
2012-08-07 17:11:33 +00:00
|
|
|
virtual void init(SkPicture* pict) SK_OVERRIDE;
|
|
|
|
virtual void render() SK_OVERRIDE;
|
|
|
|
virtual void end() SK_OVERRIDE;
|
2012-08-20 15:04:00 +00:00
|
|
|
virtual void resetState() SK_OVERRIDE;
|
2012-08-07 17:11:33 +00:00
|
|
|
void drawTiles();
|
2012-07-26 17:27:57 +00:00
|
|
|
|
2012-07-27 20:09:26 +00:00
|
|
|
void setTileWidth(int width) {
|
|
|
|
fTileWidth = width;
|
|
|
|
}
|
|
|
|
|
|
|
|
int getTileWidth() const {
|
|
|
|
return fTileWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setTileHeight(int height) {
|
|
|
|
fTileHeight = height;
|
|
|
|
}
|
|
|
|
|
|
|
|
int getTileHeight() const {
|
|
|
|
return fTileHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setTileWidthPercentage(double percentage) {
|
|
|
|
fTileWidthPercentage = percentage;
|
|
|
|
}
|
|
|
|
|
2012-08-01 17:53:29 +00:00
|
|
|
double getTileWidthPercentage() const {
|
2012-07-27 20:09:26 +00:00
|
|
|
return fTileWidthPercentage;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setTileHeightPercentage(double percentage) {
|
|
|
|
fTileHeightPercentage = percentage;
|
|
|
|
}
|
|
|
|
|
2012-08-01 17:53:29 +00:00
|
|
|
double getTileHeightPercentage() const {
|
2012-07-27 20:09:26 +00:00
|
|
|
return fTileHeightPercentage;
|
|
|
|
}
|
|
|
|
|
2012-08-01 17:53:29 +00:00
|
|
|
int numTiles() const {
|
|
|
|
return fTiles.count();
|
|
|
|
}
|
|
|
|
|
2012-07-26 17:27:57 +00:00
|
|
|
~TiledPictureRenderer();
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct TileInfo {
|
|
|
|
SkBitmap* fBitmap;
|
|
|
|
SkCanvas* fCanvas;
|
|
|
|
};
|
|
|
|
|
|
|
|
int fTileWidth;
|
|
|
|
int fTileHeight;
|
2012-07-27 20:09:26 +00:00
|
|
|
double fTileWidthPercentage;
|
|
|
|
double fTileHeightPercentage;
|
2012-07-26 17:27:57 +00:00
|
|
|
|
|
|
|
SkTDArray<TileInfo> fTiles;
|
|
|
|
|
|
|
|
// Clips the tile to an area that is completely in what the SkPicture says is the
|
|
|
|
// drawn-to area. This is mostly important for tiles on the right and bottom edges
|
|
|
|
// as they may go over this area and the picture may have some commands that
|
|
|
|
// draw outside of this area and so should not actually be written.
|
2012-08-07 17:11:33 +00:00
|
|
|
void clipTile(const TileInfo& tile);
|
|
|
|
void addTile(int tile_x_start, int tile_y_start);
|
|
|
|
void setupTiles();
|
2012-07-26 17:27:57 +00:00
|
|
|
// We manually delete the tiles instead of having a destructor on TileInfo as
|
|
|
|
// the destructor on TileInfo will be during a realloc. This would result in
|
|
|
|
// the canvases and bitmaps being prematurely deleted.
|
|
|
|
void deleteTiles();
|
2012-08-07 17:11:33 +00:00
|
|
|
void copyTilesToCanvas();
|
|
|
|
|
|
|
|
typedef PictureRenderer INHERITED;
|
2012-07-26 17:27:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // PictureRenderer_DEFINED
|