Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: src/effects/SkDisplacementMapEffect.cpp

Issue 682223002: rename GrTextureDesc->GrSurfaceDesc, GrTextureFlags->GrSurfaceFlags (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: const Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/effects/SkColorCubeFilter.cpp ('k') | src/effects/SkGpuBlurUtils.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
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 "SkDisplacementMapEffect.h" 8 #include "SkDisplacementMapEffect.h"
9 #include "SkReadBuffer.h" 9 #include "SkReadBuffer.h"
10 #include "SkWriteBuffer.h" 10 #include "SkWriteBuffer.h"
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 &displacementOffset, &displBounds, &displacementBM) ) { 401 &displacementOffset, &displBounds, &displacementBM) ) {
402 return false; 402 return false;
403 } 403 }
404 if (!bounds.intersect(displBounds)) { 404 if (!bounds.intersect(displBounds)) {
405 return false; 405 return false;
406 } 406 }
407 GrTexture* color = colorBM.getTexture(); 407 GrTexture* color = colorBM.getTexture();
408 GrTexture* displacement = displacementBM.getTexture(); 408 GrTexture* displacement = displacementBM.getTexture();
409 GrContext* context = color->getContext(); 409 GrContext* context = color->getContext();
410 410
411 GrTextureDesc desc; 411 GrSurfaceDesc desc;
412 desc.fFlags = kRenderTarget_GrTextureFlagBit | kNoStencil_GrTextureFlagBit; 412 desc.fFlags = kRenderTarget_GrSurfaceFlag | kNoStencil_GrSurfaceFlag;
413 desc.fWidth = bounds.width(); 413 desc.fWidth = bounds.width();
414 desc.fHeight = bounds.height(); 414 desc.fHeight = bounds.height();
415 desc.fConfig = kSkia8888_GrPixelConfig; 415 desc.fConfig = kSkia8888_GrPixelConfig;
416 416
417 SkAutoTUnref<GrTexture> dst( 417 SkAutoTUnref<GrTexture> dst(
418 context->refScratchTexture(desc, GrContext::kApprox_ScratchTexMatch)); 418 context->refScratchTexture(desc, GrContext::kApprox_ScratchTexMatch));
419 419
420 if (!dst) { 420 if (!dst) {
421 return false; 421 return false;
422 } 422 }
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 void GrGLDisplacementMapEffect::GenKey(const GrProcessor& proc, 629 void GrGLDisplacementMapEffect::GenKey(const GrProcessor& proc,
630 const GrGLCaps&, GrProcessorKeyBuilder* b ) { 630 const GrGLCaps&, GrProcessorKeyBuilder* b ) {
631 const GrDisplacementMapEffect& displacementMap = proc.cast<GrDisplacementMap Effect>(); 631 const GrDisplacementMapEffect& displacementMap = proc.cast<GrDisplacementMap Effect>();
632 632
633 uint32_t xKey = displacementMap.xChannelSelector(); 633 uint32_t xKey = displacementMap.xChannelSelector();
634 uint32_t yKey = displacementMap.yChannelSelector() << kChannelSelectorKeyBit s; 634 uint32_t yKey = displacementMap.yChannelSelector() << kChannelSelectorKeyBit s;
635 635
636 b->add32(xKey | yKey); 636 b->add32(xKey | yKey);
637 } 637 }
638 #endif 638 #endif
OLDNEW
« no previous file with comments | « src/effects/SkColorCubeFilter.cpp ('k') | src/effects/SkGpuBlurUtils.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698