diff options
author | Kenneth Russel <[email protected]> | 2005-03-11 23:51:09 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2005-03-11 23:51:09 +0000 |
commit | fae5b8514077f35d5bda856d6f8418d37249554e (patch) | |
tree | 2b2b73a4f73ea40e4b18a386339896c6e01efc5b /src/net | |
parent | c9cfbc37ae5e83af01e5866b8ea1284983972e29 (diff) |
Fixed bug in GLU tesselator pointed out by user basszero on
javagaming.org forums where combine callback was being called with
incorrectly-typed outData
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@253 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/java/games/jogl/impl/tesselator/Sweep.java | 2 |
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) { |