| 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 GrPipelineBuilder_DEFINED | 8 #ifndef GrPipelineBuilder_DEFINED |
| 9 #define GrPipelineBuilder_DEFINED | 9 #define GrPipelineBuilder_DEFINED |
| 10 | 10 |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 /** | 214 /** |
| 215 * Suppress linear -> sRGB conversion when rendering to sRGB render targ
ets. | 215 * Suppress linear -> sRGB conversion when rendering to sRGB render targ
ets. |
| 216 */ | 216 */ |
| 217 kDisableOutputConversionToSRGB_Flag = 0x04, | 217 kDisableOutputConversionToSRGB_Flag = 0x04, |
| 218 | 218 |
| 219 /** | 219 /** |
| 220 * Allow sRGB -> linear conversion when reading from sRGB inputs. | 220 * Allow sRGB -> linear conversion when reading from sRGB inputs. |
| 221 */ | 221 */ |
| 222 kAllowSRGBInputs_Flag = 0x08, | 222 kAllowSRGBInputs_Flag = 0x08, |
| 223 | 223 |
| 224 /** | 224 kLast_Flag = kAllowSRGBInputs_Flag, |
| 225 * Signals that one or more FPs need access to the distance vector field
to the nearest | |
| 226 * edge | |
| 227 */ | |
| 228 kUsesDistanceVectorField_Flag = 0x10, | |
| 229 | |
| 230 kLast_Flag = kUsesDistanceVectorField_Flag, | |
| 231 }; | 225 }; |
| 232 | 226 |
| 233 bool isHWAntialias() const { return SkToBool(fFlags & kHWAntialias_Flag); } | 227 bool isHWAntialias() const { return SkToBool(fFlags & kHWAntialias_Flag); } |
| 234 bool snapVerticesToPixelCenters() const { | 228 bool snapVerticesToPixelCenters() const { |
| 235 return SkToBool(fFlags & kSnapVerticesToPixelCenters_Flag); } | 229 return SkToBool(fFlags & kSnapVerticesToPixelCenters_Flag); } |
| 236 bool getDisableOutputConversionToSRGB() const { | 230 bool getDisableOutputConversionToSRGB() const { |
| 237 return SkToBool(fFlags & kDisableOutputConversionToSRGB_Flag); } | 231 return SkToBool(fFlags & kDisableOutputConversionToSRGB_Flag); } |
| 238 bool getAllowSRGBInputs() const { | 232 bool getAllowSRGBInputs() const { |
| 239 return SkToBool(fFlags & kAllowSRGBInputs_Flag); } | 233 return SkToBool(fFlags & kAllowSRGBInputs_Flag); } |
| 240 bool getUsesDistanceVectorField() const { | |
| 241 return SkToBool(fFlags & kUsesDistanceVectorField_Flag); } | |
| 242 | 234 |
| 243 /** | 235 /** |
| 244 * Enable render state settings. | 236 * Enable render state settings. |
| 245 * | 237 * |
| 246 * @param flags bitfield of Flags specifying the states to enable | 238 * @param flags bitfield of Flags specifying the states to enable |
| 247 */ | 239 */ |
| 248 void enableState(uint32_t flags) { fFlags |= flags; } | 240 void enableState(uint32_t flags) { fFlags |= flags; } |
| 249 | 241 |
| 250 /** | 242 /** |
| 251 * Disable render state settings. | 243 * Disable render state settings. |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 GrDrawFace fDrawFace; | 300 GrDrawFace fDrawFace; |
| 309 mutable sk_sp<GrXPFactory> fXPFactory; | 301 mutable sk_sp<GrXPFactory> fXPFactory; |
| 310 FragmentProcessorArray fColorFragmentProcessors; | 302 FragmentProcessorArray fColorFragmentProcessors; |
| 311 FragmentProcessorArray fCoverageFragmentProcessors; | 303 FragmentProcessorArray fCoverageFragmentProcessors; |
| 312 | 304 |
| 313 friend class GrPipeline; | 305 friend class GrPipeline; |
| 314 friend class GrDrawTarget; | 306 friend class GrDrawTarget; |
| 315 }; | 307 }; |
| 316 | 308 |
| 317 #endif | 309 #endif |
| OLD | NEW |