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

Side by Side Diff: src/gpu/GrPipelineBuilder.h

Issue 1229303003: Another trivial cleanup (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: more minor Created 5 years, 5 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
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 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 #ifndef GrPipelineBuilder_DEFINED 8 #ifndef GrPipelineBuilder_DEFINED
9 #define GrPipelineBuilder_DEFINED 9 #define GrPipelineBuilder_DEFINED
10 10
11 #include "GrBlend.h" 11 #include "GrBlend.h"
12 #include "GrCaps.h" 12 #include "GrCaps.h"
13 #include "GrClip.h" 13 #include "GrClip.h"
14 #include "GrGpuResourceRef.h" 14 #include "GrGpuResourceRef.h"
15 #include "GrFragmentStage.h" 15 #include "GrStagedProcessor.h"
16 #include "GrProcOptInfo.h" 16 #include "GrProcOptInfo.h"
17 #include "GrProcessorDataManager.h" 17 #include "GrProcessorDataManager.h"
18 #include "GrRenderTarget.h" 18 #include "GrRenderTarget.h"
19 #include "GrStencil.h" 19 #include "GrStencil.h"
20 #include "GrXferProcessor.h" 20 #include "GrXferProcessor.h"
21 #include "SkMatrix.h" 21 #include "SkMatrix.h"
22 #include "effects/GrCoverageSetOpXP.h" 22 #include "effects/GrCoverageSetOpXP.h"
23 #include "effects/GrDisableColorXP.h" 23 #include "effects/GrDisableColorXP.h"
24 #include "effects/GrPorterDuffXferProcessor.h" 24 #include "effects/GrPorterDuffXferProcessor.h"
25 #include "effects/GrSimpleTextureEffect.h" 25 #include "effects/GrSimpleTextureEffect.h"
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 mutable GrProcOptInfo fCoverageProcInfo; 453 mutable GrProcOptInfo fCoverageProcInfo;
454 mutable bool fColorProcInfoValid; 454 mutable bool fColorProcInfoValid;
455 mutable bool fCoverageProcInfoValid; 455 mutable bool fCoverageProcInfoValid;
456 mutable GrColor fColorCache; 456 mutable GrColor fColorCache;
457 mutable GrColor fCoverageCache; 457 mutable GrColor fCoverageCache;
458 458
459 friend class GrPipeline; 459 friend class GrPipeline;
460 }; 460 };
461 461
462 #endif 462 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698