Added option to enable inverting original message

This commit is contained in:
M66B
2019-04-20 16:00:46 +02:00
parent 4c974be407
commit 4ac61a7d34
6 changed files with 41 additions and 12 deletions

View File

@@ -132,6 +132,13 @@ public class Helper {
static final float LOW_LIGHT = 0.6f;
static final float[] MATRIX_NEGATIVE = new float[]{
-1, 0, 0, 0, 255, // red
0, -1, 0, 0, 255, // green
0, 0, -1, 0, 255, // blue
0, 0, 0, 1, 0 // alpha
};
static final String FAQ_URI = "https://github.com/M66B/open-source-email/blob/master/FAQ.md";
static ThreadFactory backgroundThreadFactory = new ThreadFactory() {