Skip to content

Commit 8edcb0a

Browse files
committed
vrl-0.4.3.2.4 brings experimental JDK 10 support
- start object allows to configure object reset policy - resolved some logging issues that caused performace issues
1 parent 7796165 commit 8edcb0a

File tree

3 files changed

+925
-925
lines changed

3 files changed

+925
-925
lines changed
Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
1-
/*
2-
* @(#)GraphicsModeConstants.java
3-
*
4-
* Copyright (c) 2008 Jeremy Wood. All Rights Reserved.
5-
*
6-
* You have a non-exclusive, royalty free, license to use,
7-
* modify and redistribute this software in source and binary code form,
8-
* provided that i) this copyright notice and license appear on all copies of
9-
* the software; and ii) You do not utilize the software in a manner
10-
* which is disparaging to the original author.
11-
*
12-
* This software is provided "AS IS," without a warranty of any kind. ALL
13-
* EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
14-
* IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
15-
* NON-INFRINGEMENT, ARE HEREBY EXCLUDED. THE AUTHOR SHALL NOT BE
16-
* LIABLE FOR ANY DAMAGES SUFFERED AS A RESULT OF USING, MODIFYING
17-
* OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL THE
18-
* AUTHOR BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
19-
* INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
20-
* CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
21-
* OR INABILITY TO USE SOFTWARE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE
22-
* POSSIBILITY OF SUCH DAMAGES.
23-
*/package eu.mihosoft.vrl.ext.com.bric.qt;
24-
25-
/** This is not a public class because I expect to make some significant
26-
* changes to this project in the next year.
27-
* <P>Use at your own risk. This class (and its package) may change in future releases.
28-
* <P>Not that I'm promising there will be future releases. There may not be. :)
29-
*/
30-
class GraphicsModeConstants {
31-
public static final int COPY = 0x00;
32-
public static final int DITHER_COPY = 0x40;
33-
public static final int BLEND = 0x20;
34-
public static final int TRANSPARENT = 0x24;
35-
public static final int STRAIGHT_ALPHA = 0x100;
36-
public static final int PREMUL_WHITE_ALPHA = 0x101;
37-
public static final int PREMUL_BLACK_ALPHA = 0x102;
38-
public static final int STRAIGHT_ALPHA_BLEND = 0x104;
39-
public static final int COMPOSITION = 0x103;
40-
}
1+
/*
2+
* @(#)GraphicsModeConstants.java
3+
*
4+
* Copyright (c) 2008 Jeremy Wood. All Rights Reserved.
5+
*
6+
* You have a non-exclusive, royalty free, license to use,
7+
* modify and redistribute this software in source and binary code form,
8+
* provided that i) this copyright notice and license appear on all copies of
9+
* the software; and ii) You do not utilize the software in a manner
10+
* which is disparaging to the original author.
11+
*
12+
* This software is provided "AS IS," without a warranty of any kind. ALL
13+
* EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
14+
* IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
15+
* NON-INFRINGEMENT, ARE HEREBY EXCLUDED. THE AUTHOR SHALL NOT BE
16+
* LIABLE FOR ANY DAMAGES SUFFERED AS A RESULT OF USING, MODIFYING
17+
* OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL THE
18+
* AUTHOR BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
19+
* INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
20+
* CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
21+
* OR INABILITY TO USE SOFTWARE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE
22+
* POSSIBILITY OF SUCH DAMAGES.
23+
*/package eu.mihosoft.vrl.ext.com.bric.qt;
24+
25+
/** This is not a public class because I expect to make some significant
26+
* changes to this project in the next year.
27+
* <P>Use at your own risk. This class (and its package) may change in future releases.
28+
* <P>Not that I'm promising there will be future releases. There may not be. :)
29+
*/
30+
class GraphicsModeConstants {
31+
public static final int COPY = 0x00;
32+
public static final int DITHER_COPY = 0x40;
33+
public static final int BLEND = 0x20;
34+
public static final int TRANSPARENT = 0x24;
35+
public static final int STRAIGHT_ALPHA = 0x100;
36+
public static final int PREMUL_WHITE_ALPHA = 0x101;
37+
public static final int PREMUL_BLACK_ALPHA = 0x102;
38+
public static final int STRAIGHT_ALPHA_BLEND = 0x104;
39+
public static final int COMPOSITION = 0x103;
40+
}

VRL/src/eu/mihosoft/vrl/system/Constants.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ public class Constants {
8686
* Copyright statement.
8787
*/
8888
public static final String COPYRIGHT =
89-
"2006-" + /*<VRL_COMPILE_DATE_YEAR>*/"2017"/*</VRL_COMPILE_DATE_YEAR>*/ + " by Michael Hoffer &lt;info@michaelhoffer.de&gt;";
89+
"2006-" + /*<VRL_COMPILE_DATE_YEAR>*/"2018"/*</VRL_COMPILE_DATE_YEAR>*/ + " by Michael Hoffer &lt;info@michaelhoffer.de&gt;";
9090
/**
9191
* Simple copyright statement (usefull for windows titles etc.)
9292
*/
9393
public static final String COPYRIGHT_SIMPLE =
94-
"2006-" + /*<VRL_COMPILE_DATE_YEAR>*/"2017"/*</VRL_COMPILE_DATE_YEAR>*/ + " by Michael Hoffer";
94+
"2006-" + /*<VRL_COMPILE_DATE_YEAR>*/"2018"/*</VRL_COMPILE_DATE_YEAR>*/ + " by Michael Hoffer";
9595
/**
9696
* Defines which projects can be processed by this version of VRL.
9797
*/

0 commit comments

Comments
 (0)