Chromium Code Reviews| Index: src/gpu/GrDrawState.h |
| diff --git a/src/gpu/GrDrawState.h b/src/gpu/GrDrawState.h |
| index c1dd9dcd36f61102333a1ef87cceaa15b141bdbe..1b87bb447d0fdee846153ef3985f827c550b4182 100644 |
| --- a/src/gpu/GrDrawState.h |
| +++ b/src/gpu/GrDrawState.h |
| @@ -521,28 +521,24 @@ public: |
| */ |
| kSkipDraw_BlendOptFlag = 0x1, |
| /** |
| - * Emit the src color, disable HW blending (replace dst with src) |
| - */ |
| - kDisableBlend_BlendOptFlag = 0x2, |
| - /** |
| * The coverage value does not have to be computed separately from alpha, the the output |
| * color can be the modulation of the two. |
| */ |
| - kCoverageAsAlpha_BlendOptFlag = 0x4, |
| + kCoverageAsAlpha_BlendOptFlag = 0x2, |
| /** |
| * Instead of emitting a src color, emit coverage in the alpha channel and r,g,b are |
| * "don't cares". |
| */ |
| - kEmitCoverage_BlendOptFlag = 0x8, |
| + kEmitCoverage_BlendOptFlag = 0x4, |
| /** |
| * Emit transparent black instead of the src color, no need to compute coverage. |
| */ |
| - kEmitTransBlack_BlendOptFlag = 0x10, |
| + kEmitTransBlack_BlendOptFlag = 0x8, |
| /** |
| * Flag used to invalidate the cached BlendOptFlags, OptSrcCoeff, and OptDstCoeff cached by |
| * the get BlendOpts function. |
| */ |
| - kInvalid_BlendOptFlag = 0x20, |
| + kInvalid_BlendOptFlag = 0x10, |
| }; |
|
bsalomon
2014/07/30 19:49:30
Why not just make this 1 << 31 so that we never up
egdaniel
2014/07/30 20:06:38
Done but hopefully, fingers crossed, these flags w
|
| GR_DECL_BITFIELD_OPS_FRIENDS(BlendOptFlags); |