Add Hardware rendering to options
Co-authored-by: r3cp3ct <45179536+r3cp3ct@users.noreply.github.com> Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
This commit is contained in:
parent
2e9be3bf1b
commit
7f2bbb855b
@ -68,4 +68,6 @@ Storyboarding / Event Systems
|
|||||||
`super` to suppress warnings relative to overriding a method without super invocations
|
`super` to suppress warnings relative to overriding a method without super invocations
|
||||||
|
|
||||||
`resource` to suppress warnings relative to usage of resources of type Closeable
|
`resource` to suppress warnings relative to usage of resources of type Closeable
|
||||||
`sync-override` to suppress warnings because of missing synchronize when overriding a synchronized method
|
`sync-override` to suppress warnings because of missing synchronize when overriding a synchronized method
|
||||||
|
|
||||||
|
http://www.magicandlove.com/blog/2012/05/01/opencl-particles-system-example-in-processing/
|
@ -1,3 +1,3 @@
|
|||||||
cd bin
|
cd bin
|
||||||
java -Djava.library.path="../lib" -Xms2G -Xmx2G -jar RabiClone.jar
|
java -Djava.library.path="../lib" -Dsun.java2d.opengl=true -Xms2G -Xmx2G -jar RabiClone.jar
|
||||||
cd ..
|
cd ..
|
@ -1,3 +1,3 @@
|
|||||||
cd bin
|
cd bin
|
||||||
java "-Djava.library.path=../lib" -Xms2G -Xmx2G -jar RabiClone.jar
|
java "-Djava.library.path=../lib" "-Dsun.java2d.opengl=true" -Xms2G -Xmx2G -jar RabiClone.jar
|
||||||
cd ..
|
cd ..
|
@ -1,3 +1,3 @@
|
|||||||
cd bin
|
cd bin
|
||||||
java -Djava.library.path="../lib" -Xms2G -Xmx2G -jar RabiClone.jar
|
java -Dsun.java2d.opengl=true -Djava.library.path="../lib" -Xms2G -Xmx2G -jar RabiClone.jar
|
||||||
cd ..
|
cd ..
|
2
sig
2
sig
@ -8,7 +8,7 @@ define MAIN_CLASS "sig.${PROJECT_NAME}"
|
|||||||
define OUT_DIR "bin"
|
define OUT_DIR "bin"
|
||||||
define LIBRARY_PATH "../lib"
|
define LIBRARY_PATH "../lib"
|
||||||
define CLASS_PATH "${PROJECT_DIR}/..:lib/bin"
|
define CLASS_PATH "${PROJECT_DIR}/..:lib/bin"
|
||||||
define CUSTOM_PARAMS "-Xmx2G -Xms2G"
|
define CUSTOM_PARAMS "-Xmx2G -Xms2G -Dsun.java2d.opengl=true"
|
||||||
define LANGUAGE "Java"
|
define LANGUAGE "Java"
|
||||||
|
|
||||||
source utils/main.sh
|
source utils/main.sh
|
Loading…
x
Reference in New Issue
Block a user