aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/opencl/demos/fractal
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-06-28 14:36:25 +0200
committerSven Gothel <[email protected]>2011-06-28 14:36:25 +0200
commit3039c6edca8028252ddf578d36297d4461d50bd7 (patch)
tree7dbcb762ccd1a4ef81dfd5722544297b5d5da2e5 /src/com/jogamp/opencl/demos/fractal
parentfa6c68204570ceb2f4bc051d983cb6b95300a053 (diff)
parent3e75f3f7c0b7339547ee3cf3da2e68599dd68b53 (diff)
Fix merge w/ latest mbien/master
Diffstat (limited to 'src/com/jogamp/opencl/demos/fractal')
-rw-r--r--src/com/jogamp/opencl/demos/fractal/MultiDeviceFractal.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/com/jogamp/opencl/demos/fractal/MultiDeviceFractal.java b/src/com/jogamp/opencl/demos/fractal/MultiDeviceFractal.java
index 9c6b648..67c4957 100644
--- a/src/com/jogamp/opencl/demos/fractal/MultiDeviceFractal.java
+++ b/src/com/jogamp/opencl/demos/fractal/MultiDeviceFractal.java
@@ -123,6 +123,7 @@ public class MultiDeviceFractal implements GLEventListener {
textRenderer = new TextRenderer(frame.getFont().deriveFont(Font.BOLD, 14), true, true, null, false);
}
+ @Override
public void init(GLAutoDrawable drawable) {
if(clContext == null) {
@@ -349,6 +350,7 @@ public class MultiDeviceFractal implements GLEventListener {
}
// rendering cycle
+ @Override
public void display(GLAutoDrawable drawable) {
GL gl = drawable.getGL();
@@ -438,6 +440,7 @@ public class MultiDeviceFractal implements GLEventListener {
textRenderer.endRendering();
}
+ @Override
public void reshape(GLAutoDrawable drawable, int x, int y, int width, int height) {
if(this.width == width && this.height == height)
@@ -540,6 +543,7 @@ public class MultiDeviceFractal implements GLEventListener {
win.dispose();
}
+ @Override
public void dispose(GLAutoDrawable drawable) {
}
@@ -549,7 +553,7 @@ public class MultiDeviceFractal implements GLEventListener {
GLProfile.initSingleton(false);
SwingUtilities.invokeLater(new Runnable() {
- public void run() {
+ @Override public void run() {
new MultiDeviceFractal(512, 512);
}
});