diff options
author | Nick White <git@njw.name> | 2019-10-29 18:16:14 +0000 |
---|---|---|
committer | Nick White <git@njw.name> | 2019-10-29 18:16:14 +0000 |
commit | c13bfe75e82a71ac7436df1cad5b10b678d5bc95 (patch) | |
tree | 4bcea220346ce6fab8983b5d0b18505d51bfa8fd /def.go | |
parent | dcb91f0393c02a2124d867674ed25ef11d83087c (diff) |
Fix SetTextRenderingMode to follow spec correctly, and add missing modes to constaddtextrenderingmode
Diffstat (limited to 'def.go')
-rw-r--r-- | def.go | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -123,14 +123,18 @@ const ( TextRenderingModeFill = 0 // TextRenderingModeStroke strokes text TextRenderingModeStroke = 1 - // TextRenderingModeFillThenStroke fills then strokes text - TextRenderingModeFillThenStroke = 2 + // TextRenderingModeFillStroke fills then strokes text + TextRenderingModeFillStroke = 2 // TextRenderingModeInvisible neither fills nor strokes text TextRenderingModeInvisible = 3 // TextRenderingFillClip fills text and add to path for clipping TextRenderingModeFillClip = 4 // TextRenderingFillClip strokes text and add to path for clipping TextRenderingModeStrokeClip = 5 + // TextRenderingModeFillStrokeClip fills then strokes text and add to path for clipping + TextRenderingModeFillStrokeClip = 6 + // TextRenderingModeClip Adds text to path for clipping + TextRenderingModeClip = 7 ) type colorMode int |