Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
BlendMode.java
Go to the documentation of this file.
1/*
2 * Copyright 2021 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8package org.skia.jetski;
9
10public enum BlendMode {
12 SRC(1),
13 DST(2),
22 XOR(11),
23 PLUS(12),
25 SCREEN(14),
27 DARKEN(16),
36 HUE(25),
38 COLOR(27),
40
41 BlendMode(int nativeInt) {
42 this.nativeInt = nativeInt;
43 }
44 final int nativeInt;
45}
BlendMode(int nativeInt)