implement ColorFilter in GskCanvas

This is needed to make icons follow night mode setting
This commit is contained in:
Julian Winkler
2024-03-24 21:12:13 +01:00
parent ad266c7821
commit 8eb0c0a3c1
5 changed files with 34 additions and 6 deletions

View File

@@ -92,6 +92,10 @@ public class PorterDuff {
ADD(16),
OVERLAY(17);
Mode(int nativeInt) {}
public int nativeInt;
Mode(int nativeInt) {
this.nativeInt = nativeInt;
}
}
}