diff options
Diffstat (limited to 'src/gpu/GrDrawState.h')
-rw-r--r-- | src/gpu/GrDrawState.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/gpu/GrDrawState.h b/src/gpu/GrDrawState.h index c1dd9dcd36..145f462744 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, }; GR_DECL_BITFIELD_OPS_FRIENDS(BlendOptFlags); |