blob: b304ccb1ddbff9d2d9de3c2f010258bcd6ade72b [file] [log] [blame]
robertphillips@google.com7d501ab2012-06-21 21:09:06 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "GrSurface.h"
bsalomonafbf2d62014-09-30 12:18:44 -07009#include "GrSurfacePriv.h"
robertphillips@google.com7d501ab2012-06-21 21:09:06 +000010
commit-bot@chromium.org6c5d9a12013-09-30 18:05:43 +000011#include "SkBitmap.h"
reed@google.combf790232013-12-13 19:45:58 +000012#include "SkGr.h"
commit-bot@chromium.org6c5d9a12013-09-30 18:05:43 +000013#include "SkImageEncoder.h"
bungeman@google.comfab44db2013-10-11 18:50:45 +000014#include <stdio.h>
commit-bot@chromium.org6c5d9a12013-09-30 18:05:43 +000015
bsalomon81beccc2014-10-13 12:32:55 -070016bool GrSurface::writePixels(int left, int top, int width, int height,
17 GrPixelConfig config, const void* buffer, size_t rowBytes,
18 uint32_t pixelOpsFlags) {
19 // go through context so that all necessary flushing occurs
20 GrContext* context = this->getContext();
21 if (NULL == context) {
22 return false;
23 }
24 return context->writeSurfacePixels(this, left, top, width, height, config, buffer, rowBytes,
25 pixelOpsFlags);
26}
27
28bool GrSurface::readPixels(int left, int top, int width, int height,
29 GrPixelConfig config, void* buffer, size_t rowBytes,
30 uint32_t pixelOpsFlags) {
31 // go through context so that all necessary flushing occurs
32 GrContext* context = this->getContext();
33 if (NULL == context) {
34 return false;
35 }
36 GrRenderTarget* target = this->asRenderTarget();
37 if (target) {
38 return context->readRenderTargetPixels(target, left, top, width, height, config, buffer,
39 rowBytes, pixelOpsFlags);
40 }
41 return false;
42}
43
bsalomon74f681d2015-06-23 14:38:48 -070044SkImageInfo GrSurface::info(SkAlphaType alphaType) const {
reede5ea5002014-09-03 11:54:58 -070045 SkColorType colorType;
jvanverthfa1e8a72014-12-22 08:31:49 -080046 SkColorProfileType profileType;
47 if (!GrPixelConfig2ColorAndProfileType(this->config(), &colorType, &profileType)) {
reed@google.combf790232013-12-13 19:45:58 +000048 sk_throw();
49 }
bsalomon74f681d2015-06-23 14:38:48 -070050 return SkImageInfo::Make(this->width(), this->height(), colorType, alphaType,
jvanverthfa1e8a72014-12-22 08:31:49 -080051 profileType);
reed@google.combf790232013-12-13 19:45:58 +000052}
53
bsalomonafbf2d62014-09-30 12:18:44 -070054// TODO: This should probably be a non-member helper function. It might only be needed in
55// debug or developer builds.
commit-bot@chromium.org6c5d9a12013-09-30 18:05:43 +000056bool GrSurface::savePixels(const char* filename) {
57 SkBitmap bm;
reed84825042014-09-02 12:50:45 -070058 if (!bm.tryAllocPixels(SkImageInfo::MakeN32Premul(this->width(), this->height()))) {
reed@google.com9ebcac52014-01-24 18:53:42 +000059 return false;
60 }
commit-bot@chromium.org6c5d9a12013-09-30 18:05:43 +000061
bsalomonafbf2d62014-09-30 12:18:44 -070062 bool result = this->readPixels(0, 0, this->width(), this->height(), kSkia8888_GrPixelConfig,
63 bm.getPixels());
commit-bot@chromium.org6c5d9a12013-09-30 18:05:43 +000064 if (!result) {
65 SkDebugf("------ failed to read pixels for %s\n", filename);
66 return false;
67 }
skia.committer@gmail.com1d3bfdc2013-10-01 07:01:46 +000068
commit-bot@chromium.org6c5d9a12013-09-30 18:05:43 +000069 // remove any previous version of this file
70 remove(filename);
71
72 if (!SkImageEncoder::EncodeFile(filename, bm, SkImageEncoder::kPNG_Type, 100)) {
73 SkDebugf("------ failed to encode %s\n", filename);
74 remove(filename); // remove any partial file
75 return false;
76 }
77
78 return true;
79}
bsalomon8d034a12014-09-22 12:21:08 -070080
bsalomonf80bfed2014-10-07 05:56:02 -070081void GrSurface::flushWrites() {
82 if (!this->wasDestroyed()) {
83 this->getContext()->flushSurfaceWrites(this);
84 }
85}
86
bsalomon87a94eb2014-11-03 14:28:32 -080087void GrSurface::prepareForExternalRead() {
88 if (!this->wasDestroyed()) {
89 this->getContext()->prepareSurfaceForExternalRead(this);
90 }
91}
92
bsalomon8d034a12014-09-22 12:21:08 -070093bool GrSurface::hasPendingRead() const {
94 const GrTexture* thisTex = this->asTexture();
95 if (thisTex && thisTex->internalHasPendingRead()) {
96 return true;
97 }
98 const GrRenderTarget* thisRT = this->asRenderTarget();
99 if (thisRT && thisRT->internalHasPendingRead()) {
100 return true;
101 }
102 return false;
103}
104
105bool GrSurface::hasPendingWrite() const {
106 const GrTexture* thisTex = this->asTexture();
107 if (thisTex && thisTex->internalHasPendingWrite()) {
108 return true;
109 }
110 const GrRenderTarget* thisRT = this->asRenderTarget();
111 if (thisRT && thisRT->internalHasPendingWrite()) {
112 return true;
113 }
114 return false;
115}
116
117bool GrSurface::hasPendingIO() const {
118 const GrTexture* thisTex = this->asTexture();
119 if (thisTex && thisTex->internalHasPendingIO()) {
120 return true;
121 }
122 const GrRenderTarget* thisRT = this->asRenderTarget();
123 if (thisRT && thisRT->internalHasPendingIO()) {
124 return true;
125 }
126 return false;
127}
reedde499882015-06-18 13:41:40 -0700128
129void GrSurface::onRelease() {
130 this->invokeReleaseProc();
131 this->INHERITED::onRelease();
132}
133
134void GrSurface::onAbandon() {
135 this->invokeReleaseProc();
136 this->INHERITED::onAbandon();
137}