summaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/opencl/demos/fft/PaintView.java
diff options
context:
space:
mode:
authorWade Walker <[email protected]>2015-07-05 17:11:38 -0500
committerWade Walker <[email protected]>2015-07-06 17:04:12 -0500
commite935256bf1ad44ceb2d9e3e63810f8d5017733be (patch)
tree70d8ab829d425a78ef8eebde640bd50fa6a3bb05 /src/com/jogamp/opencl/demos/fft/PaintView.java
parent858dbcb36211e743559070acc49043c21cde6636 (diff)
Fixed a variety of compilation and runtime errors
Fixed package change from javax.media to com.jogamp; fixed problems with generics; fixed dead-code and similar warnings; fixed problem with struct accessor on Julia3d using element offsets where it should have used byte offsets; updated Eclipse project files
Diffstat (limited to 'src/com/jogamp/opencl/demos/fft/PaintView.java')
-rw-r--r--src/com/jogamp/opencl/demos/fft/PaintView.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/com/jogamp/opencl/demos/fft/PaintView.java b/src/com/jogamp/opencl/demos/fft/PaintView.java
index 9dea3c8..4a6535a 100644
--- a/src/com/jogamp/opencl/demos/fft/PaintView.java
+++ b/src/com/jogamp/opencl/demos/fft/PaintView.java
@@ -16,6 +16,7 @@ import java.awt.image.BufferedImage;
* Draws an image and lets you draw white dots in it with the mouse. Or big white dots with code.
* @author notzed
*/
+@SuppressWarnings("serial")
class PaintView extends ImageView implements MouseListener, MouseMotionListener {
Graphics2D imgg;
@@ -70,14 +71,14 @@ class PaintView extends ImageView implements MouseListener, MouseMotionListener
}
public void mousePressed(MouseEvent e) {
- if (e.getButton() == e.BUTTON1) {
+ if (e.getButton() == MouseEvent.BUTTON1) {
addMouseMotionListener(this);
drawPaint(e.getX(), e.getY());
}
}
public void mouseReleased(MouseEvent e) {
- if (e.getButton() == e.BUTTON1) {
+ if (e.getButton() == MouseEvent.BUTTON1) {
removeMouseMotionListener(this);
//drawPaint(e.getX(), e.getY());
}