aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/games/jogl/impl
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2005-02-23 09:49:43 +0000
committerKenneth Russel <[email protected]>2005-02-23 09:49:43 +0000
commitc8dee7dfd025112ff11e6506f02060eacd4c90f2 (patch)
tree65d41b3fec5e2fc8aa445894b4f653a65e2e81f9 /src/net/java/games/jogl/impl
parentf4ae5496e788696508e6f7592b62761473ebc8d5 (diff)
Changed comments to C++ style to be able to comment out blocks
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@235 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/net/java/games/jogl/impl')
-rw-r--r--src/net/java/games/jogl/impl/mipmap/ScaleInternal.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/net/java/games/jogl/impl/mipmap/ScaleInternal.java b/src/net/java/games/jogl/impl/mipmap/ScaleInternal.java
index 3a9306683..1c5321412 100644
--- a/src/net/java/games/jogl/impl/mipmap/ScaleInternal.java
+++ b/src/net/java/games/jogl/impl/mipmap/ScaleInternal.java
@@ -176,7 +176,7 @@ public class ScaleInternal {
highy_float = convy_float;
for( i = 0; i < heightout; i++ ) {
- /* Clamp here to be sure we don't read beyond input buffer. */
+ // Clamp here to be sure we don't read beyond input buffer.
if (highy_int >= heightin)
highy_int = heightin - 1;
lowx_int = 0;
@@ -385,7 +385,7 @@ public class ScaleInternal {
highy_float = convy_float;
for( i = 0; i < heightout; i++ ) {
- /* Clamp here to be sure we don't read beyond input buffer. */
+ // Clamp here to be sure we don't read beyond input buffer.
if (highy_int >= heightin)
highy_int = heightin - 1;
lowx_int = 0;
@@ -594,7 +594,7 @@ public class ScaleInternal {
highy_float = convy_float;
for( i = 0; i < heightout; i++ ) {
- /* Clamp here to be sure we don't read beyond input buffer. */
+ // Clamp here to be sure we don't read beyond input buffer.
if (highy_int >= heightin)
highy_int = heightin - 1;
lowx_int = 0;
@@ -868,7 +868,7 @@ public class ScaleInternal {
highy_float = convy_float;
for( i = 0; i < heightout; i++ ) {
- /* Clamp here to be sure we don't read beyond input buffer. */
+ // Clamp here to be sure we don't read beyond input buffer.
if (highy_int >= heightin)
highy_int = heightin - 1;
lowx_int = 0;
@@ -1154,7 +1154,7 @@ public class ScaleInternal {
highy_float = convy_float;
for( i = 0; i < heightout; i++ ) {
- /* Clamp here to be sure we don't read beyond input buffer. */
+ // Clamp here to be sure we don't read beyond input buffer.
if (highy_int >= heightin)
highy_int = heightin - 1;
lowx_int = 0;
@@ -1435,7 +1435,7 @@ public class ScaleInternal {
highy_float = convy_float;
for( i = 0; i < heightout; i++ ) {
- /* Clamp here to be sure we don't read beyond input buffer. */
+ // Clamp here to be sure we don't read beyond input buffer.
if (highy_int >= heightin)
highy_int = heightin - 1;
lowx_int = 0;
@@ -1723,7 +1723,7 @@ public class ScaleInternal {
highy_float = convy_float;
for( i = 0; i < heightout; i++ ) {
- /* Clamp here to be sure we don't read beyond input buffer. */
+ // Clamp here to be sure we don't read beyond input buffer.
if (highy_int >= heightin)
highy_int = heightin - 1;
lowx_int = 0;
@@ -2014,7 +2014,7 @@ public class ScaleInternal {
highy_float = convx_float;
for( i = 0; i < heightOut; i++ ) {
- /* Clamp here to be sure we don't read beyond input buffer. */
+ // Clamp here to be sure we don't read beyond input buffer.
if (highy_int >= heightIn)
highy_int = heightIn - 1;
lowx_int = 0;