Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright 2011 The Android Open Source Project | 2 * Copyright 2011 The Android Open Source Project |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkBitmap.h" | |
| 9 #include "SkBlurImageFilter.h" | 8 #include "SkBlurImageFilter.h" |
| 9 | |
| 10 #include "SkAutoPixmapStorage.h" | |
| 10 #include "SkColorPriv.h" | 11 #include "SkColorPriv.h" |
| 11 #include "SkDevice.h" | |
| 12 #include "SkGpuBlurUtils.h" | 12 #include "SkGpuBlurUtils.h" |
| 13 #include "SkOpts.h" | 13 #include "SkOpts.h" |
| 14 #include "SkReadBuffer.h" | 14 #include "SkReadBuffer.h" |
| 15 #include "SkSpecialImage.h" | |
| 15 #include "SkWriteBuffer.h" | 16 #include "SkWriteBuffer.h" |
| 17 | |
| 16 #if SK_SUPPORT_GPU | 18 #if SK_SUPPORT_GPU |
| 17 #include "GrContext.h" | 19 #include "GrContext.h" |
| 18 #include "SkGr.h" | 20 #include "SkGr.h" |
| 19 #endif | 21 #endif |
| 20 | 22 |
| 21 // This rather arbitrary-looking value results in a maximum box blur kernel size | 23 // This rather arbitrary-looking value results in a maximum box blur kernel size |
| 22 // of 1000 pixels on the raster path, which matches the WebKit and Firefox | 24 // of 1000 pixels on the raster path, which matches the WebKit and Firefox |
| 23 // implementations. Since the GPU path does not compute a box blur, putting | 25 // implementations. Since the GPU path does not compute a box blur, putting |
| 24 // the limit on sigma ensures consistent behaviour between the GPU and | 26 // the limit on sigma ensures consistent behaviour between the GPU and |
| 25 // raster paths. | 27 // raster paths. |
| (...skipping 20 matching lines...) Expand all Loading... | |
| 46 SkScalar sigmaY = buffer.readScalar(); | 48 SkScalar sigmaY = buffer.readScalar(); |
| 47 return Create(sigmaX, sigmaY, common.getInput(0), &common.cropRect()); | 49 return Create(sigmaX, sigmaY, common.getInput(0), &common.cropRect()); |
| 48 } | 50 } |
| 49 | 51 |
| 50 void SkBlurImageFilter::flatten(SkWriteBuffer& buffer) const { | 52 void SkBlurImageFilter::flatten(SkWriteBuffer& buffer) const { |
| 51 this->INHERITED::flatten(buffer); | 53 this->INHERITED::flatten(buffer); |
| 52 buffer.writeScalar(fSigma.fWidth); | 54 buffer.writeScalar(fSigma.fWidth); |
| 53 buffer.writeScalar(fSigma.fHeight); | 55 buffer.writeScalar(fSigma.fHeight); |
| 54 } | 56 } |
| 55 | 57 |
| 56 static void getBox3Params(SkScalar s, int *kernelSize, int* kernelSize3, int *lo wOffset, | 58 static void get_box3_params(SkScalar s, int *kernelSize, int* kernelSize3, int * lowOffset, |
| 57 int *highOffset) | 59 int *highOffset) |
| 58 { | 60 { |
| 59 float pi = SkScalarToFloat(SK_ScalarPI); | 61 float pi = SkScalarToFloat(SK_ScalarPI); |
| 60 int d = static_cast<int>(floorf(SkScalarToFloat(s) * 3.0f * sqrtf(2.0f * pi) / 4.0f + 0.5f)); | 62 int d = static_cast<int>(floorf(SkScalarToFloat(s) * 3.0f * sqrtf(2.0f * pi) / 4.0f + 0.5f)); |
| 61 *kernelSize = d; | 63 *kernelSize = d; |
| 62 if (d % 2 == 1) { | 64 if (d % 2 == 1) { |
| 63 *lowOffset = *highOffset = (d - 1) / 2; | 65 *lowOffset = *highOffset = (d - 1) / 2; |
| 64 *kernelSize3 = d; | 66 *kernelSize3 = d; |
| 65 } else { | 67 } else { |
| 66 *highOffset = d / 2; | 68 *highOffset = d / 2; |
| 67 *lowOffset = *highOffset - 1; | 69 *lowOffset = *highOffset - 1; |
| 68 *kernelSize3 = d + 1; | 70 *kernelSize3 = d + 1; |
| 69 } | 71 } |
| 70 } | 72 } |
| 71 | 73 |
| 72 bool SkBlurImageFilter::onFilterImageDeprecated(Proxy* proxy, | 74 SkSpecialImage* SkBlurImageFilter::onFilterImage(SkSpecialImage* source, const C ontext& ctx, |
| 73 const SkBitmap& source, const Co ntext& ctx, | 75 SkIPoint* offset) const { |
| 74 SkBitmap* dst, SkIPoint* offset) const { | 76 SkIPoint inputOffset = SkIPoint::Make(0, 0); |
| 75 SkBitmap src = source; | 77 |
| 76 SkIPoint srcOffset = SkIPoint::Make(0, 0); | 78 SkAutoTUnref<SkSpecialImage> input(this->filterInput(0, source, ctx, &inputO ffset)); |
| 77 if (!this->filterInputDeprecated(0, proxy, source, ctx, &src, &srcOffset)) { | 79 if (!input) { |
| 78 return false; | 80 return nullptr; |
| 79 } | 81 } |
| 80 | 82 |
| 81 if (src.colorType() != kN32_SkColorType) { | 83 SkIRect inputBounds = SkIRect::MakeXYWH(inputOffset.fX, inputOffset.fY, |
| 82 return false; | 84 input->width(), input->height()); |
| 85 | |
| 86 SkIRect dstBounds; | |
| 87 if (!this->applyCropRect(this->mapContext(ctx), inputBounds, &dstBounds)) { | |
| 88 return nullptr; | |
| 83 } | 89 } |
| 84 | 90 if (!inputBounds.intersect(dstBounds)) { |
| 85 SkIRect srcBounds = src.bounds(); | 91 return nullptr; |
| 86 srcBounds.offset(srcOffset); | |
| 87 SkIRect dstBounds; | |
| 88 if (!this->applyCropRect(this->mapContext(ctx), srcBounds, &dstBounds)) { | |
| 89 return false; | |
| 90 } | |
| 91 if (!srcBounds.intersect(dstBounds)) { | |
| 92 return false; | |
| 93 } | 92 } |
| 94 | 93 |
| 95 SkVector sigma = map_sigma(fSigma, ctx.ctm()); | 94 SkVector sigma = map_sigma(fSigma, ctx.ctm()); |
| 96 | 95 |
| 97 int kernelSizeX, kernelSizeX3, lowOffsetX, highOffsetX; | 96 if (!input->peekTexture()) { |
|
Stephen White
2016/03/17 17:13:22
Rather than indenting the subsequent ~90 lines, co
robertphillips
2016/03/21 16:44:32
The parameter list to an internal method was cumbe
| |
| 98 int kernelSizeY, kernelSizeY3, lowOffsetY, highOffsetY; | 97 int kernelSizeX, kernelSizeX3, lowOffsetX, highOffsetX; |
| 99 getBox3Params(sigma.x(), &kernelSizeX, &kernelSizeX3, &lowOffsetX, &highOffs etX); | 98 int kernelSizeY, kernelSizeY3, lowOffsetY, highOffsetY; |
| 100 getBox3Params(sigma.y(), &kernelSizeY, &kernelSizeY3, &lowOffsetY, &highOffs etY); | 99 get_box3_params(sigma.x(), &kernelSizeX, &kernelSizeX3, &lowOffsetX, &hi ghOffsetX); |
| 100 get_box3_params(sigma.y(), &kernelSizeY, &kernelSizeY3, &lowOffsetY, &hi ghOffsetY); | |
| 101 | 101 |
| 102 if (kernelSizeX < 0 || kernelSizeY < 0) { | 102 if (kernelSizeX < 0 || kernelSizeY < 0) { |
| 103 return false; | 103 return nullptr; |
| 104 } | |
| 105 | |
| 106 if (kernelSizeX == 0 && kernelSizeY == 0) { | |
| 107 offset->fX = inputBounds.x(); | |
| 108 offset->fY = inputBounds.y(); | |
| 109 return input->extractSubset(inputBounds.makeOffset(-inputOffset.x(), | |
| 110 -inputOffset.y()) ); | |
| 111 } | |
| 112 | |
| 113 SkPixmap inputPixmap; | |
| 114 | |
| 115 if (!input->peekPixels(&inputPixmap)) { | |
| 116 return nullptr; | |
| 117 } | |
| 118 | |
| 119 if (inputPixmap.colorType() != kN32_SkColorType) { | |
| 120 return nullptr; | |
| 121 } | |
| 122 | |
| 123 SkImageInfo info = SkImageInfo::Make(dstBounds.width(), dstBounds.height (), | |
| 124 inputPixmap.colorType(), inputPixma p.alphaType()); | |
| 125 | |
| 126 SkAutoPixmapStorage dst, tmp; | |
| 127 | |
| 128 dst.alloc(info); | |
| 129 tmp.alloc(info); | |
| 130 | |
| 131 offset->fX = dstBounds.fLeft; | |
| 132 offset->fY = dstBounds.fTop; | |
| 133 SkPMColor* t = (SkPMColor*) tmp.addr32(0, 0); | |
| 134 SkPMColor* d = (SkPMColor*) dst.addr32(0, 0); | |
| 135 int w = dstBounds.width(), h = dstBounds.height(); | |
| 136 const SkPMColor* s = inputPixmap.addr32(inputBounds.x() - inputOffset.x( ), | |
| 137 inputBounds.y() - inputOffset.y( )); | |
| 138 inputBounds.offset(-dstBounds.x(), -dstBounds.y()); | |
| 139 dstBounds.offset(-dstBounds.x(), -dstBounds.y()); | |
| 140 SkIRect inputBoundsT = SkIRect::MakeLTRB(inputBounds.top(), inputBounds. left(), | |
| 141 inputBounds.bottom(), inputBoun ds.right()); | |
| 142 SkIRect dstBoundsT = SkIRect::MakeWH(dstBounds.height(), dstBounds.width ()); | |
| 143 int sw = inputPixmap.rowBytes() >> 2; | |
| 144 | |
| 145 /** | |
| 146 * | |
| 147 * In order to make memory accesses cache-friendly, we reorder the passe s to | |
| 148 * use contiguous memory reads wherever possible. | |
| 149 * | |
| 150 * For example, the 6 passes of the X-and-Y blur case are rewritten as | |
| 151 * follows. Instead of 3 passes in X and 3 passes in Y, we perform | |
| 152 * 2 passes in X, 1 pass in X transposed to Y on write, 2 passes in X, | |
| 153 * then 1 pass in X transposed to Y on write. | |
| 154 * | |
| 155 * +----+ +----+ +----+ +---+ +---+ +---+ +----+ | |
| 156 * + AB + ----> | AB | ----> | AB | -----> | A | ----> | A | ----> | A | -----> | AB | | |
| 157 * +----+ blurX +----+ blurX +----+ blurXY | B | blurX | B | blurX | B | blurXY +----+ | |
| 158 * +---+ +---+ +---+ | |
| 159 * | |
| 160 * In this way, two of the y-blurs become x-blurs applied to transposed | |
| 161 * images, and all memory reads are contiguous. | |
| 162 */ | |
| 163 if (kernelSizeX > 0 && kernelSizeY > 0) { | |
| 164 SkOpts::box_blur_xx(s, sw, inputBounds, t, kernelSizeX, lowOffset X, highOffsetX, w, h); | |
| 165 SkOpts::box_blur_xx(t, w, dstBounds, d, kernelSizeX, highOffse tX, lowOffsetX, w, h); | |
| 166 SkOpts::box_blur_xy(d, w, dstBounds, t, kernelSizeX3, highOffse tX, highOffsetX, w, h); | |
| 167 SkOpts::box_blur_xx(t, h, dstBoundsT, d, kernelSizeY, lowOffset Y, highOffsetY, h, w); | |
| 168 SkOpts::box_blur_xx(d, h, dstBoundsT, t, kernelSizeY, highOffse tY, lowOffsetY, h, w); | |
| 169 SkOpts::box_blur_xy(t, h, dstBoundsT, d, kernelSizeY3, highOffse tY, highOffsetY, h, w); | |
| 170 } else if (kernelSizeX > 0) { | |
| 171 SkOpts::box_blur_xx(s, sw, inputBounds, d, kernelSizeX, lowOffset X, highOffsetX, w, h); | |
| 172 SkOpts::box_blur_xx(d, w, dstBounds, t, kernelSizeX, highOffse tX, lowOffsetX, w, h); | |
| 173 SkOpts::box_blur_xx(t, w, dstBounds, d, kernelSizeX3, highOffse tX, highOffsetX, w, h); | |
| 174 } else if (kernelSizeY > 0) { | |
| 175 SkOpts::box_blur_yx(s, sw, inputBoundsT, d, kernelSizeY, lowOffset Y, highOffsetY, h, w); | |
| 176 SkOpts::box_blur_xx(d, h, dstBoundsT, t, kernelSizeY, highOffse tY, lowOffsetY, h, w); | |
| 177 SkOpts::box_blur_xy(t, h, dstBoundsT, d, kernelSizeY3, highOffse tY, highOffsetY, h, w); | |
| 178 } | |
| 179 | |
| 180 SkSpecialImage* result = SkSpecialImage::NewFromPixmap(source->internal_ getProxy(), | |
| 181 SkIRect::MakeWH(d stBounds.width(), | |
| 182 d stBounds.height()), | |
| 183 dst, | |
| 184 [] (void* addr, v oid*) -> void { | |
| 185 sk_free(addr) ; | |
| 186 }, | |
| 187 nullptr); | |
| 188 dst.release(); // 'result' now owns the pixels | |
| 189 return result; | |
| 190 } | |
| 191 #if SK_SUPPORT_GPU | |
| 192 else { | |
| 193 if (0 == sigma.x() && 0 == sigma.y()) { | |
| 194 offset->fX = inputBounds.x(); | |
| 195 offset->fY = inputBounds.y(); | |
| 196 return input->extractSubset(inputBounds.makeOffset(-inputOffset.x(), -inputOffset.y())); | |
| 197 } | |
| 198 | |
| 199 GrTexture* inputTexture = input->peekTexture(); | |
| 200 | |
| 201 offset->fX = dstBounds.fLeft; | |
| 202 offset->fY = dstBounds.fTop; | |
| 203 inputBounds.offset(-inputOffset); | |
| 204 dstBounds.offset(-inputOffset); | |
| 205 SkRect inputBoundsF(SkRect::Make(inputBounds)); | |
| 206 SkAutoTUnref<GrTexture> tex(SkGpuBlurUtils::GaussianBlur(inputTexture->g etContext(), | |
| 207 inputTexture, | |
| 208 false, | |
| 209 SkRect::Make(ds tBounds), | |
| 210 &inputBoundsF, | |
| 211 sigma.x(), | |
| 212 sigma.y())); | |
| 213 if (!tex) { | |
| 214 return nullptr; | |
| 215 } | |
| 216 | |
| 217 return SkSpecialImage::NewFromGpu(source->internal_getProxy(), | |
| 218 SkIRect::MakeWH(dstBounds.width(), dst Bounds.height()), | |
| 219 kNeedNewImageUniqueID_SpecialImage, | |
| 220 tex); | |
| 104 } | 221 } |
| 105 | 222 #endif |
| 106 if (kernelSizeX == 0 && kernelSizeY == 0) { | |
| 107 src.extractSubset(dst, srcBounds.makeOffset(-srcOffset.x(), -srcOffset.y ())); | |
| 108 offset->fX = srcBounds.x(); | |
| 109 offset->fY = srcBounds.y(); | |
| 110 return true; | |
| 111 } | |
| 112 | |
| 113 SkAutoLockPixels alp(src); | |
| 114 if (!src.getPixels()) { | |
| 115 return false; | |
| 116 } | |
| 117 | |
| 118 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(dstBounds.width(), dst Bounds.height())); | |
| 119 if (!device) { | |
| 120 return false; | |
| 121 } | |
| 122 *dst = device->accessBitmap(false); | |
| 123 SkAutoLockPixels alp_dst(*dst); | |
| 124 | |
| 125 SkAutoTUnref<SkBaseDevice> tempDevice(proxy->createDevice(dst->width(), dst- >height())); | |
| 126 if (!tempDevice) { | |
| 127 return false; | |
| 128 } | |
| 129 SkBitmap temp = tempDevice->accessBitmap(false); | |
| 130 SkAutoLockPixels alpTemp(temp); | |
| 131 | |
| 132 offset->fX = dstBounds.fLeft; | |
| 133 offset->fY = dstBounds.fTop; | |
| 134 SkPMColor* t = temp.getAddr32(0, 0); | |
| 135 SkPMColor* d = dst->getAddr32(0, 0); | |
| 136 int w = dstBounds.width(), h = dstBounds.height(); | |
| 137 const SkPMColor* s = src.getAddr32(srcBounds.x() - srcOffset.x(), srcBounds. y() - srcOffset.y()); | |
| 138 srcBounds.offset(-dstBounds.x(), -dstBounds.y()); | |
| 139 dstBounds.offset(-dstBounds.x(), -dstBounds.y()); | |
| 140 SkIRect srcBoundsT = SkIRect::MakeLTRB(srcBounds.top(), srcBounds.left(), sr cBounds.bottom(), srcBounds.right()); | |
| 141 SkIRect dstBoundsT = SkIRect::MakeWH(dstBounds.height(), dstBounds.width()); | |
| 142 int sw = src.rowBytesAsPixels(); | |
| 143 | |
| 144 /** | |
| 145 * | |
| 146 * In order to make memory accesses cache-friendly, we reorder the passes to | |
| 147 * use contiguous memory reads wherever possible. | |
| 148 * | |
| 149 * For example, the 6 passes of the X-and-Y blur case are rewritten as | |
| 150 * follows. Instead of 3 passes in X and 3 passes in Y, we perform | |
| 151 * 2 passes in X, 1 pass in X transposed to Y on write, 2 passes in X, | |
| 152 * then 1 pass in X transposed to Y on write. | |
| 153 * | |
| 154 * +----+ +----+ +----+ +---+ +---+ +---+ +----+ | |
| 155 * + AB + ----> | AB | ----> | AB | -----> | A | ----> | A | ----> | A | --- --> | AB | | |
| 156 * +----+ blurX +----+ blurX +----+ blurXY | B | blurX | B | blurX | B | blu rXY +----+ | |
| 157 * +---+ +---+ +---+ | |
| 158 * | |
| 159 * In this way, two of the y-blurs become x-blurs applied to transposed | |
| 160 * images, and all memory reads are contiguous. | |
| 161 */ | |
| 162 if (kernelSizeX > 0 && kernelSizeY > 0) { | |
| 163 SkOpts::box_blur_xx(s, sw, srcBounds, t, kernelSizeX, lowOffsetX, hi ghOffsetX, w, h); | |
| 164 SkOpts::box_blur_xx(t, w, dstBounds, d, kernelSizeX, highOffsetX, lo wOffsetX, w, h); | |
| 165 SkOpts::box_blur_xy(d, w, dstBounds, t, kernelSizeX3, highOffsetX, hi ghOffsetX, w, h); | |
| 166 SkOpts::box_blur_xx(t, h, dstBoundsT, d, kernelSizeY, lowOffsetY, hi ghOffsetY, h, w); | |
| 167 SkOpts::box_blur_xx(d, h, dstBoundsT, t, kernelSizeY, highOffsetY, lo wOffsetY, h, w); | |
| 168 SkOpts::box_blur_xy(t, h, dstBoundsT, d, kernelSizeY3, highOffsetY, hi ghOffsetY, h, w); | |
| 169 } else if (kernelSizeX > 0) { | |
| 170 SkOpts::box_blur_xx(s, sw, srcBounds, d, kernelSizeX, lowOffsetX, hi ghOffsetX, w, h); | |
| 171 SkOpts::box_blur_xx(d, w, dstBounds, t, kernelSizeX, highOffsetX, lo wOffsetX, w, h); | |
| 172 SkOpts::box_blur_xx(t, w, dstBounds, d, kernelSizeX3, highOffsetX, hi ghOffsetX, w, h); | |
| 173 } else if (kernelSizeY > 0) { | |
| 174 SkOpts::box_blur_yx(s, sw, srcBoundsT, d, kernelSizeY, lowOffsetY, hi ghOffsetY, h, w); | |
| 175 SkOpts::box_blur_xx(d, h, dstBoundsT, t, kernelSizeY, highOffsetY, lo wOffsetY, h, w); | |
| 176 SkOpts::box_blur_xy(t, h, dstBoundsT, d, kernelSizeY3, highOffsetY, hi ghOffsetY, h, w); | |
| 177 } | |
| 178 return true; | |
| 179 } | 223 } |
| 180 | 224 |
| 181 | 225 |
| 182 void SkBlurImageFilter::computeFastBounds(const SkRect& src, SkRect* dst) const { | 226 void SkBlurImageFilter::computeFastBounds(const SkRect& src, SkRect* dst) const { |
| 183 if (this->getInput(0)) { | 227 if (this->getInput(0)) { |
| 184 this->getInput(0)->computeFastBounds(src, dst); | 228 this->getInput(0)->computeFastBounds(src, dst); |
| 185 } else { | 229 } else { |
| 186 *dst = src; | 230 *dst = src; |
| 187 } | 231 } |
| 188 | 232 |
| 189 dst->outset(SkScalarMul(fSigma.width(), SkIntToScalar(3)), | 233 dst->outset(SkScalarMul(fSigma.width(), SkIntToScalar(3)), |
| 190 SkScalarMul(fSigma.height(), SkIntToScalar(3))); | 234 SkScalarMul(fSigma.height(), SkIntToScalar(3))); |
| 191 } | 235 } |
| 192 | 236 |
| 193 void SkBlurImageFilter::onFilterNodeBounds(const SkIRect& src, const SkMatrix& c tm, | 237 void SkBlurImageFilter::onFilterNodeBounds(const SkIRect& src, const SkMatrix& c tm, |
| 194 SkIRect* dst, MapDirection) const { | 238 SkIRect* dst, MapDirection) const { |
| 195 *dst = src; | 239 *dst = src; |
| 196 SkVector sigma = map_sigma(fSigma, ctm); | 240 SkVector sigma = map_sigma(fSigma, ctm); |
| 197 dst->outset(SkScalarCeilToInt(SkScalarMul(sigma.x(), SkIntToScalar(3))), | 241 dst->outset(SkScalarCeilToInt(SkScalarMul(sigma.x(), SkIntToScalar(3))), |
| 198 SkScalarCeilToInt(SkScalarMul(sigma.y(), SkIntToScalar(3)))); | 242 SkScalarCeilToInt(SkScalarMul(sigma.y(), SkIntToScalar(3)))); |
| 199 } | 243 } |
| 200 | 244 |
| 201 bool SkBlurImageFilter::filterImageGPUDeprecated(Proxy* proxy, const SkBitmap& s rc, | |
| 202 const Context& ctx, | |
| 203 SkBitmap* result, SkIPoint* off set) const { | |
| 204 #if SK_SUPPORT_GPU | |
| 205 SkBitmap input = src; | |
| 206 SkIPoint srcOffset = SkIPoint::Make(0, 0); | |
| 207 if (!this->filterInputGPUDeprecated(0, proxy, src, ctx, &input, &srcOffset)) { | |
| 208 return false; | |
| 209 } | |
| 210 SkIRect srcBounds = input.bounds(); | |
| 211 srcBounds.offset(srcOffset); | |
| 212 SkIRect dstBounds; | |
| 213 if (!this->applyCropRect(this->mapContext(ctx), srcBounds, &dstBounds)) { | |
| 214 return false; | |
| 215 } | |
| 216 if (!srcBounds.intersect(dstBounds)) { | |
| 217 return false; | |
| 218 } | |
| 219 SkVector sigma = map_sigma(fSigma, ctx.ctm()); | |
| 220 if (sigma.x() == 0 && sigma.y() == 0) { | |
| 221 input.extractSubset(result, srcBounds.makeOffset(-srcOffset.x(), -srcOff set.y())); | |
| 222 offset->fX = srcBounds.x(); | |
| 223 offset->fY = srcBounds.y(); | |
| 224 return true; | |
| 225 } | |
| 226 offset->fX = dstBounds.fLeft; | |
| 227 offset->fY = dstBounds.fTop; | |
| 228 srcBounds.offset(-srcOffset); | |
| 229 dstBounds.offset(-srcOffset); | |
| 230 SkRect srcBoundsF(SkRect::Make(srcBounds)); | |
| 231 GrTexture* inputTexture = input.getTexture(); | |
| 232 SkAutoTUnref<GrTexture> tex(SkGpuBlurUtils::GaussianBlur(inputTexture->getCo ntext(), | |
| 233 inputTexture, | |
| 234 false, | |
| 235 SkRect::Make(dstBou nds), | |
| 236 &srcBoundsF, | |
| 237 sigma.x(), | |
| 238 sigma.y())); | |
| 239 if (!tex) { | |
| 240 return false; | |
| 241 } | |
| 242 GrWrapTextureInBitmap(tex, dstBounds.width(), dstBounds.height(), false, res ult); | |
| 243 return true; | |
| 244 #else | |
| 245 SkDEBUGFAIL("Should not call in GPU-less build"); | |
| 246 return false; | |
| 247 #endif | |
| 248 } | |
| 249 | |
| 250 #ifndef SK_IGNORE_TO_STRING | 245 #ifndef SK_IGNORE_TO_STRING |
| 251 void SkBlurImageFilter::toString(SkString* str) const { | 246 void SkBlurImageFilter::toString(SkString* str) const { |
| 252 str->appendf("SkBlurImageFilter: ("); | 247 str->appendf("SkBlurImageFilter: ("); |
| 253 str->appendf("sigma: (%f, %f) input (", fSigma.fWidth, fSigma.fHeight); | 248 str->appendf("sigma: (%f, %f) input (", fSigma.fWidth, fSigma.fHeight); |
| 254 | 249 |
| 255 if (this->getInput(0)) { | 250 if (this->getInput(0)) { |
| 256 this->getInput(0)->toString(str); | 251 this->getInput(0)->toString(str); |
| 257 } | 252 } |
| 258 | 253 |
| 259 str->append("))"); | 254 str->append("))"); |
| 260 } | 255 } |
| 261 #endif | 256 #endif |
| OLD | NEW |