2011-04-05 17:08:27 +00:00
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2011-04-05 17:08:27 +00:00
|
|
|
*/
|
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
|
2011-04-05 17:08:27 +00:00
|
|
|
#include "GrTexture.h"
|
|
|
|
#include "GrContext.h"
|
2011-05-02 21:14:59 +00:00
|
|
|
#include "GrGpu.h"
|
2011-04-05 17:08:27 +00:00
|
|
|
|
|
|
|
bool GrRenderTarget::readPixels(int left, int top, int width, int height,
|
|
|
|
GrPixelConfig config, void* buffer) {
|
|
|
|
// go through context so that all necessary flushing occurs
|
|
|
|
GrContext* context = this->getGpu()->getContext();
|
|
|
|
GrAssert(NULL != context);
|
|
|
|
return context->readRenderTargetPixels(this,
|
|
|
|
left, top,
|
|
|
|
width, height,
|
|
|
|
config, buffer);
|
|
|
|
}
|
|
|
|
|
2011-07-26 12:32:36 +00:00
|
|
|
size_t GrRenderTarget::sizeInBytes() const {
|
|
|
|
int colorBits;
|
|
|
|
if (kUnknown_GrPixelConfig == fConfig) {
|
|
|
|
colorBits = 32; // don't know, make a guess
|
|
|
|
} else {
|
|
|
|
colorBits = GrBytesPerPixel(fConfig);
|
|
|
|
}
|
|
|
|
return fWidth * fHeight * (fStencilBits + colorBits);
|
|
|
|
}
|
|
|
|
|
2011-05-02 12:53:34 +00:00
|
|
|
void GrRenderTarget::flagAsNeedingResolve(const GrIRect* rect) {
|
|
|
|
if (kCanResolve_ResolveType == getResolveType()) {
|
|
|
|
if (NULL != rect) {
|
2011-05-09 17:00:02 +00:00
|
|
|
fResolveRect.join(*rect);
|
|
|
|
if (!fResolveRect.intersect(0, 0, this->width(), this->height())) {
|
|
|
|
fResolveRect.setEmpty();
|
|
|
|
}
|
2011-05-02 12:53:34 +00:00
|
|
|
} else {
|
|
|
|
fResolveRect.setLTRB(0, 0, this->width(), this->height());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GrRenderTarget::overrideResolveRect(const GrIRect rect) {
|
|
|
|
fResolveRect = rect;
|
|
|
|
if (fResolveRect.isEmpty()) {
|
|
|
|
fResolveRect.setLargestInverted();
|
|
|
|
} else {
|
2011-05-09 17:00:02 +00:00
|
|
|
if (!fResolveRect.intersect(0, 0, this->width(), this->height())) {
|
2011-05-02 12:53:34 +00:00
|
|
|
fResolveRect.setLargestInverted();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-05 17:08:27 +00:00
|
|
|
bool GrTexture::readPixels(int left, int top, int width, int height,
|
|
|
|
GrPixelConfig config, void* buffer) {
|
|
|
|
// go through context so that all necessary flushing occurs
|
|
|
|
GrContext* context = this->getGpu()->getContext();
|
|
|
|
GrAssert(NULL != context);
|
|
|
|
return context->readTexturePixels(this,
|
|
|
|
left, top,
|
|
|
|
width, height,
|
|
|
|
config, buffer);
|
|
|
|
}
|
2011-07-26 12:32:36 +00:00
|
|
|
|