| OLD | NEW |
| 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 SkArithmeticMode_gpu_DEFINED | 8 #ifndef SkArithmeticMode_gpu_DEFINED |
| 9 #define SkArithmeticMode_gpu_DEFINED | 9 #define SkArithmeticMode_gpu_DEFINED |
| 10 | 10 |
| 11 #include "SkTypes.h" | 11 #include "SkTypes.h" |
| 12 | 12 |
| 13 #if SK_SUPPORT_GPU | 13 #if SK_SUPPORT_GPU |
| 14 | 14 |
| 15 #include "GrCaps.h" |
| 15 #include "GrCoordTransform.h" | 16 #include "GrCoordTransform.h" |
| 16 #include "GrDrawTargetCaps.h" | |
| 17 #include "GrFragmentProcessor.h" | 17 #include "GrFragmentProcessor.h" |
| 18 #include "GrTextureAccess.h" | 18 #include "GrTextureAccess.h" |
| 19 #include "GrTypes.h" | 19 #include "GrTypes.h" |
| 20 #include "GrXferProcessor.h" | 20 #include "GrXferProcessor.h" |
| 21 | 21 |
| 22 class GrInvariantOutput; | 22 class GrInvariantOutput; |
| 23 class GrProcOptInfo; | 23 class GrProcOptInfo; |
| 24 class GrTexture; | 24 class GrTexture; |
| 25 | 25 |
| 26 /////////////////////////////////////////////////////////////////////////////// | 26 /////////////////////////////////////////////////////////////////////////////// |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 GR_DECLARE_XP_FACTORY_TEST; | 113 GR_DECLARE_XP_FACTORY_TEST; |
| 114 | 114 |
| 115 float fK1, fK2, fK3, fK4; | 115 float fK1, fK2, fK3, fK4; |
| 116 bool fEnforcePMColor; | 116 bool fEnforcePMColor; |
| 117 | 117 |
| 118 typedef GrXPFactory INHERITED; | 118 typedef GrXPFactory INHERITED; |
| 119 }; | 119 }; |
| 120 | 120 |
| 121 #endif | 121 #endif |
| 122 #endif | 122 #endif |
| OLD | NEW |