aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/games/jogl/impl/tesselator/Sweep.java
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2005-04-24 22:59:51 +0000
committerKenneth Russel <[email protected]>2005-04-24 22:59:51 +0000
commit492f117fd3f76c7a5778ca2a07c6f5803242b8e0 (patch)
treebebfe51a2cb8fc36613cdd8ad6caf04b88d1ef47 /src/net/java/games/jogl/impl/tesselator/Sweep.java
parentc35019b5256ca33fb642d54608101ab7292f3c60 (diff)
Merged with current JOGL trunk (by using -r HEAD)
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JSR-231@262 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/net/java/games/jogl/impl/tesselator/Sweep.java')
-rw-r--r--src/net/java/games/jogl/impl/tesselator/Sweep.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/java/games/jogl/impl/tesselator/Sweep.java b/src/net/java/games/jogl/impl/tesselator/Sweep.java
index e7b77cd26..3674d12e1 100644
--- a/src/net/java/games/jogl/impl/tesselator/Sweep.java
+++ b/src/net/java/games/jogl/impl/tesselator/Sweep.java
@@ -404,7 +404,7 @@ class Sweep {
coords[1] = isect.coords[1];
coords[2] = isect.coords[2];
- double[][] outData = new double[1][];
+ Object[] outData = new Object[1];
tess.callCombineOrCombineData(coords, data, weights, outData);
isect.data = outData[0];
if (isect.data == null) {