summaryrefslogtreecommitdiffstats
path: root/java-run-swing.sh
blob: 7cbb97a4be8f6db331e6525f707759f96c6b2610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#! /bin/sh

CPOK=0
echo $CLASSPATH | grep jogl && CPOK=1

#SWING_PROPS="-Dsun.java2d.noddraw=true -Dsun.java2d.opengl=false"
SWING_PROPS="-Dsun.java2d.noddraw=true -Dsun.java2d.opengl=true"
SWING_PROPS_DBG="-Djnlp.jogl.debug.GLJPanel=true"

if [ $CPOK -eq 0 ] ; then
    # Only valid for autobuild .. otherwise run manually with build-dir
    . ./setenv-jogl.sh JOGL_ALL
    echo $CLASSPATH | grep jogl && CPOK=1
fi
if [ $CPOK -eq 0 ] ; then
    echo No JOGL in CLASSPATH
else
    java $SWING_PROPS $SWING_PROPS_DBG $* 2>&1 | tee java-run-swing.log
fi