aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/image/SkImage_Gpu.cpp
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-10-31 14:48:39 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-10-31 14:48:39 +0000
commit97b6b0730dcb0feee9224ff04eb3985ca4bd0216 (patch)
tree516d366d516ac0bd13bb6a137e1d2c45abbfa9a2 /src/image/SkImage_Gpu.cpp
parentd3eb336d56b2ad989229c8fb21ea20f5a7b14a32 (diff)
Fleshed out GPU portion of image/surface feature
Diffstat (limited to 'src/image/SkImage_Gpu.cpp')
-rw-r--r--src/image/SkImage_Gpu.cpp80
1 files changed, 46 insertions, 34 deletions
diff --git a/src/image/SkImage_Gpu.cpp b/src/image/SkImage_Gpu.cpp
index e061e2d737..c721077b62 100644
--- a/src/image/SkImage_Gpu.cpp
+++ b/src/image/SkImage_Gpu.cpp
@@ -9,65 +9,77 @@
#include "SkImagePriv.h"
#include "SkBitmap.h"
#include "SkCanvas.h"
-#include "SkData.h"
-#include "SkDataPixelRef.h"
+#include "GrContext.h"
+#include "GrTexture.h"
+#include "SkGrPixelRef.h"
class SkImage_Gpu : public SkImage_Base {
public:
- static bool ValidArgs(GrContext* context,
- const GrPlatformTextureDesc& desc) {
- if (0 == desc.fTextureHandle) {
- return false;
- }
- if (desc.fWidth < 0 || desc.fHeight < 0) {
- return false;
- }
- return true;
- }
+ SK_DECLARE_INST_COUNT(SkImage_Gpu)
- SkImage_Gpu(GrContext* context, const GrPlatformTextureDesc& desc);
+ SkImage_Gpu(GrTexture*);
virtual ~SkImage_Gpu();
- virtual void onDraw(SkCanvas*, SkScalar, SkScalar, const SkPaint*) SK_OVERRIDE;
+ virtual void onDraw(SkCanvas*, SkScalar x, SkScalar y, const SkPaint*) SK_OVERRIDE;
+
+ GrTexture* getTexture() { return fTexture; }
+
+ void setTexture(GrTexture* texture);
private:
+ GrTexture* fTexture;
SkBitmap fBitmap;
typedef SkImage_Base INHERITED;
};
+SK_DEFINE_INST_COUNT(SkImage_Gpu)
+
///////////////////////////////////////////////////////////////////////////////
-SkImage_Gpu::SkImage_Gpu(GrContext* context, const GrPlatformTextureDesc& desc)
- : INHERITED(desc.fWidth, desc.fHeight) {
-#if 0
- bool isOpaque;
- SkBitmap::Config config = SkImageInfoToBitmapConfig(info, &isOpaque);
-
- fBitmap.setConfig(config, info.fWidth, info.fHeight, rowBytes);
- fBitmap.setPixelRef(SkNEW_ARGS(SkDataPixelRef, (data)))->unref();
- fBitmap.setIsOpaque(isOpaque);
- fBitmap.setImmutable();
-#endif
+SkImage_Gpu::SkImage_Gpu(GrTexture* texture)
+ : INHERITED(texture->width(), texture->height())
+ , fTexture(texture) {
+
+ SkASSERT(NULL != fTexture);
+ fTexture->ref();
+ fBitmap.setConfig(SkBitmap::kARGB_8888_Config, fTexture->width(), fTexture->height());
+ fBitmap.setPixelRef(new SkGrPixelRef(fTexture))->unref();
}
-SkImage_Gpu::~SkImage_Gpu() {}
+SkImage_Gpu::~SkImage_Gpu() {
+ SkSafeUnref(fTexture);
+}
-void SkImage_Gpu::onDraw(SkCanvas* canvas, SkScalar x, SkScalar y, const SkPaint* paint) {
+void SkImage_Gpu::onDraw(SkCanvas* canvas, SkScalar x, SkScalar y,
+ const SkPaint* paint) {
canvas->drawBitmap(fBitmap, x, y, paint);
}
-///////////////////////////////////////////////////////////////////////////////
+void SkImage_Gpu::setTexture(GrTexture* texture) {
-SkImage* SkImage::NewRasterCopy(NewTexture(GrContext* context,
- const GrPlatformTextureDesc& desc) {
- if (NULL == context) {
- return NULL;
+ if (texture == fTexture) {
+ return;
}
- if (!SkImage_Gpu::ValidArgs(context, desc)) {
+
+ SkRefCnt_SafeAssign(fTexture, texture);
+ fBitmap.setPixelRef(new SkGrPixelRef(texture))->unref();
+}
+
+///////////////////////////////////////////////////////////////////////////////
+
+SkImage* SkImage::NewTexture(GrTexture* texture) {
+ if (NULL == texture) {
return NULL;
}
- return SkNEW_ARGS(SkImage_Gpu, (context, desc));
+ return SkNEW_ARGS(SkImage_Gpu, (texture));
+}
+
+GrTexture* SkTextureImageGetTexture(SkImage* image) {
+ return ((SkImage_Gpu*)image)->getTexture();
}
+void SkTextureImageSetTexture(SkImage* image, GrTexture* texture) {
+ ((SkImage_Gpu*)image)->setTexture(texture);
+}