-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
25ea125
commit 93a615b
Showing
11 changed files
with
16,628 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
1,599 changes: 1,599 additions & 0 deletions
1,599
source/openfl/display/_internal/CanvasGraphics.hx
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package openfl.display._internal; | ||
|
||
#if !flash | ||
#if (haxe_ver >= 4.0) enum #else @:enum #end abstract DrawCommandType(Int) | ||
|
||
{ | ||
var BEGIN_BITMAP_FILL; | ||
var BEGIN_FILL; | ||
var BEGIN_GRADIENT_FILL; | ||
var BEGIN_SHADER_FILL; | ||
var CUBIC_CURVE_TO; | ||
var CURVE_TO; | ||
var DRAW_CIRCLE; | ||
var DRAW_ELLIPSE; | ||
var DRAW_QUADS; | ||
var DRAW_RECT; | ||
var DRAW_ROUND_RECT; | ||
var DRAW_TILES; | ||
var DRAW_TRIANGLES; | ||
var END_FILL; | ||
var LINE_BITMAP_STYLE; | ||
var LINE_GRADIENT_STYLE; | ||
var LINE_STYLE; | ||
var LINE_TO; | ||
var MOVE_TO; | ||
var OVERRIDE_BLEND_MODE; | ||
var OVERRIDE_MATRIX; | ||
var WINDING_EVEN_ODD; | ||
var WINDING_NON_ZERO; | ||
var UNKNOWN; | ||
} | ||
#end |
Oops, something went wrong.