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

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

Issue 771353005: Fix include for GrPortderDuffXferProcessor.cpp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years 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 | « gyp/gpu.gyp ('k') | no next file » | 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 "GrPorterDuffXferProcessor.h" 8 #include "effects/GrPorterDuffXferProcessor.h"
9 9
10 #include "GrDrawState.h" 10 #include "GrDrawState.h"
11 #include "GrInvariantOutput.h" 11 #include "GrInvariantOutput.h"
12 #include "GrProcessor.h" 12 #include "GrProcessor.h"
13 #include "GrTypes.h" 13 #include "GrTypes.h"
14 #include "GrXferProcessor.h" 14 #include "GrXferProcessor.h"
15 #include "gl/GrGLProcessor.h" 15 #include "gl/GrGLProcessor.h"
16 #include "gl/builders/GrGLFragmentShaderBuilder.h" 16 #include "gl/builders/GrGLFragmentShaderBuilder.h"
17 #include "gl/builders/GrGLProgramBuilder.h" 17 #include "gl/builders/GrGLProgramBuilder.h"
18 18
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 153
154 bool GrPorterDuffXPFactory::supportsRGBCoverage(GrColor /*knownColor*/, 154 bool GrPorterDuffXPFactory::supportsRGBCoverage(GrColor /*knownColor*/,
155 uint32_t knownColorFlags) const { 155 uint32_t knownColorFlags) const {
156 if (kOne_GrBlendCoeff == fSrc && kISA_GrBlendCoeff == fDst && 156 if (kOne_GrBlendCoeff == fSrc && kISA_GrBlendCoeff == fDst &&
157 kRGBA_GrColorComponentFlags == knownColorFlags) { 157 kRGBA_GrColorComponentFlags == knownColorFlags) {
158 return true; 158 return true;
159 } 159 }
160 return false; 160 return false;
161 } 161 }
162 162
OLDNEW
« no previous file with comments | « gyp/gpu.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698