aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-04-24 13:40:22 +0200
committerSven Gothel <[email protected]>2012-04-24 13:40:22 +0200
commit5854705968e73c222724be24eecd21c488a7e977 (patch)
treee296adcd6014a57820e49ebe93f3839bc835bd89 /src
parent9d522e77a9ac1f85c57236f00d5432e671f9169c (diff)
Test (Applets): Add MovieCube to jogl-test-applets page.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/test/com/jogamp/opengl/test/junit/jogl/demos/es2/av/MovieCube.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/av/MovieCube.java b/src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/av/MovieCube.java
index 090b947d9..557cf28d7 100755
--- a/src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/av/MovieCube.java
+++ b/src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/av/MovieCube.java
@@ -69,7 +69,12 @@ public class MovieCube implements GLEventListener, GLMediaEventListener {
TexCubeES2 cube=null;
GLMediaPlayer mPlayer=null;
URLConnection stream = null;
-
+
+ public MovieCube() throws IOException {
+ this(new URL("http://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_320x180.mp4").openConnection(),
+ -2.3f, 0f, 0f);
+ }
+
public MovieCube(URLConnection stream, float zoom0, float rotx, float roty) throws IOException {
this.stream = stream;
mPlayer = GLMediaPlayerFactory.create();