aboutsummaryrefslogtreecommitdiffstats
path: root/src/classes/x11
diff options
context:
space:
mode:
authorHarvey Harrison <[email protected]>2011-12-31 14:24:45 -0800
committerHarvey Harrison <[email protected]>2011-12-31 14:24:45 -0800
commiteb264491b0a923610888684fc6134e0f430932f8 (patch)
tree05daae868277d30d11f94b5b6370be30250243ae /src/classes/x11
parentf7b4d86b7f02174bafe4006144d4f54dbbd55df7 (diff)
j3dcore: remove trailing whitespace from all files
Signed-off-by: Harvey Harrison <[email protected]>
Diffstat (limited to 'src/classes/x11')
-rw-r--r--src/classes/x11/javax/media/j3d/X11NativeConfigTemplate3D.java16
-rw-r--r--src/classes/x11/javax/media/j3d/X11NativeScreenInfo.java2
2 files changed, 9 insertions, 9 deletions
diff --git a/src/classes/x11/javax/media/j3d/X11NativeConfigTemplate3D.java b/src/classes/x11/javax/media/j3d/X11NativeConfigTemplate3D.java
index fe97730..5f7a3b3 100644
--- a/src/classes/x11/javax/media/j3d/X11NativeConfigTemplate3D.java
+++ b/src/classes/x11/javax/media/j3d/X11NativeConfigTemplate3D.java
@@ -87,7 +87,7 @@ class X11NativeConfigTemplate3D extends NativeConfigTemplate3D {
System.out.println(" display " + display + " screen " + screen);
System.out.println(" configuration count: " + gc.length);
for (int i = 0 ; i < gc.length ; i++) {
- System.out.println(" visual id at index " + i + ": " +
+ System.out.println(" visual id at index " + i + ": " +
((X11GraphicsConfig)gc[i]).getVisual());
}
}
@@ -120,7 +120,7 @@ class X11NativeConfigTemplate3D extends NativeConfigTemplate3D {
attrList[STEREO] = template.getStereo();
attrList[ANTIALIASING] = template.getSceneAntialiasing();
attrList[STENCIL_SIZE] = template.getStencilSize();
- // System.out.println("X11NativeConfigTemplate3D : getStencilSize " +
+ // System.out.println("X11NativeConfigTemplate3D : getStencilSize " +
// attrList[STENCIL_SIZE]);
long[] fbConfig = new long[1];
@@ -165,7 +165,7 @@ class X11NativeConfigTemplate3D extends NativeConfigTemplate3D {
} else {
freeFBConfig(fbConfig[0]);
}
- }
+ }
return gc1;
}
@@ -202,16 +202,16 @@ class X11NativeConfigTemplate3D extends NativeConfigTemplate3D {
attrList[STEREO] = template.getStereo();
attrList[ANTIALIASING] = template.getSceneAntialiasing();
attrList[STENCIL_SIZE] = template.getStencilSize();
- // System.out.println("X11NativeConfigTemplate3D : getStencilSize " +
+ // System.out.println("X11NativeConfigTemplate3D : getStencilSize " +
// attrList[STENCIL_SIZE]);
-
+
long[] fbConfig = new long[1];
int visID = chooseOglVisual(display, screen, attrList, fbConfig);
-
+
if (visID == 0 || fbConfig[0] == 0)
return false; // no valid visual was found
else
- return true;
+ return true;
}
@@ -290,7 +290,7 @@ class X11NativeConfigTemplate3D extends NativeConfigTemplate3D {
return isSceneAntialiasingMultisampleAvailable(display, screen, vid);
}
-
+
// Ensure that the native libraries are loaded
static {
VirtualUniverse.loadLibraries();
diff --git a/src/classes/x11/javax/media/j3d/X11NativeScreenInfo.java b/src/classes/x11/javax/media/j3d/X11NativeScreenInfo.java
index 7e95e81..ce076e2 100644
--- a/src/classes/x11/javax/media/j3d/X11NativeScreenInfo.java
+++ b/src/classes/x11/javax/media/j3d/X11NativeScreenInfo.java
@@ -50,7 +50,7 @@ class X11NativeScreenInfo extends NativeScreenInfo {
}
// Fix for issue 20.
- // This method will return true if glx version is 1.3 or higher,
+ // This method will return true if glx version is 1.3 or higher,
// else return false.
static synchronized boolean isGLX13() {
if (!glxChecked) {