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

Side by Side Diff: src/gpu/effects/GrDisableColorXP.cpp

Issue 923153003: Revert of Use dst copies in porter duffer XP to correctly render certain blends. (Closed) Base URL: https://skia.googlesource.com/skia.git@prePDDstCopy
Patch Set: Created 5 years, 10 months 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/gpu/effects/GrDisableColorXP.h ('k') | src/gpu/effects/GrPorterDuffXferProcessor.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 2014 Google Inc. 2 * Copyright 2014 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 "effects/GrDisableColorXP.h" 8 #include "effects/GrDisableColorXP.h"
9 #include "GrProcessor.h" 9 #include "GrProcessor.h"
10 #include "gl/GrGLXferProcessor.h" 10 #include "gl/GrGLXferProcessor.h"
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 blendInfo->fWriteColor = false; 93 blendInfo->fWriteColor = false;
94 } 94 }
95 95
96 /////////////////////////////////////////////////////////////////////////////// 96 ///////////////////////////////////////////////////////////////////////////////
97 97
98 GrDisableColorXPFactory::GrDisableColorXPFactory() { 98 GrDisableColorXPFactory::GrDisableColorXPFactory() {
99 this->initClassID<GrDisableColorXPFactory>(); 99 this->initClassID<GrDisableColorXPFactory>();
100 } 100 }
101 101
102 GrXferProcessor* 102 GrXferProcessor*
103 GrDisableColorXPFactory::onCreateXferProcessor(const GrDrawTargetCaps& caps, 103 GrDisableColorXPFactory::onCreateXferProcessor(const GrProcOptInfo& colorPOI,
104 const GrProcOptInfo& colorPOI,
105 const GrProcOptInfo& covPOI, 104 const GrProcOptInfo& covPOI,
106 const GrDeviceCoordTexture* dstCo py) const { 105 const GrDeviceCoordTexture* dstCo py) const {
107 return DisableColorXP::Create(); 106 return DisableColorXP::Create();
108 } 107 }
109 108
110 GR_DEFINE_XP_FACTORY_TEST(GrDisableColorXPFactory); 109 GR_DEFINE_XP_FACTORY_TEST(GrDisableColorXPFactory);
111 110
112 GrXPFactory* GrDisableColorXPFactory::TestCreate(SkRandom* random, 111 GrXPFactory* GrDisableColorXPFactory::TestCreate(SkRandom* random,
113 GrContext*, 112 GrContext*,
114 const GrDrawTargetCaps&, 113 const GrDrawTargetCaps&,
115 GrTexture*[]) { 114 GrTexture*[]) {
116 return GrDisableColorXPFactory::Create(); 115 return GrDisableColorXPFactory::Create();
117 } 116 }
118 117
OLDNEW
« no previous file with comments | « src/gpu/effects/GrDisableColorXP.h ('k') | src/gpu/effects/GrPorterDuffXferProcessor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698