This commit is contained in:
Skytrias
2022-12-24 11:19:12 +01:00
parent 4ee413aa32
commit 2a94b66f4d
3 changed files with 133 additions and 158 deletions
+5 -5
View File
@@ -1020,11 +1020,11 @@ __renderFlush :: proc(uptr: rawptr) {
__blendFuncSeparate(ctx, &call.blendFunc)
switch call.type {
case .NONE: {}
case .FILL: __fill(ctx, call)
case .CONVEX_FILL: __convexFill(ctx, call)
case .STROKE: __stroke(ctx, call)
case .TRIANGLES: __triangles(ctx, call)
case .NONE: {}
case .FILL: __fill(ctx, call)
case .CONVEX_FILL: __convexFill(ctx, call)
case .STROKE: __stroke(ctx, call)
case .TRIANGLES: __triangles(ctx, call)
}
}