diff options
author | Sven Gothel <[email protected]> | 2013-10-29 23:28:28 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-10-29 23:28:28 +0100 |
commit | 0943389a6d34622c112ed73ce3d2d2e25434ce59 (patch) | |
tree | 6df1f211d6c862af14690cbfd0b1f42426618460 /src/jogl/classes/com/jogamp/opengl/swt | |
parent | 9f2a9df0a4b7093925c8854b37fba053469a4b35 (diff) |
Bug 877 Concurrency Discussion: Update doc MultiThreading.txt, volatile field usage; GLDrawableImpl: Make read-only fields final.
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/swt')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/swt/GLCanvas.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/swt/GLCanvas.java b/src/jogl/classes/com/jogamp/opengl/swt/GLCanvas.java index 1268e9569..cad780a89 100644 --- a/src/jogl/classes/com/jogamp/opengl/swt/GLCanvas.java +++ b/src/jogl/classes/com/jogamp/opengl/swt/GLCanvas.java @@ -109,7 +109,7 @@ public class GLCanvas extends Canvas implements GLAutoDrawable, GLSharedContextS private volatile Rectangle clientArea; private volatile GLDrawableImpl drawable; // volatile: avoid locking for read-only access - private volatile GLContextImpl context; + private volatile GLContextImpl context; // volatile: avoid locking for read-only access /* Native window surface */ private final boolean useX11GTK; |