From 16e23f079b1e5fdc15b64bf1593cbda8e8dcffc0 Mon Sep 17 00:00:00 2001 From: Kenneth Russel Date: Fri, 13 Jan 2006 07:29:23 +0000 Subject: Renamed com.sun.opengl.utils to com.sun.opengl.util. Moved TextureIO-related classes to com.sun.opengl.util.texture and TextureProvider, TextureWriter and format-specific readers to com.sun.opengl.util.texture.spi. Renamed BufferUtils to BufferUtil. Added ImageUtil and FileUtil. Cleaned up javadoc. Updated demos. Cleaned up some imports. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@538 232f8b59-042b-4e1e-8c03-345bb8c30851 --- src/classes/com/sun/opengl/impl/Project.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/classes/com/sun/opengl/impl/Project.java') diff --git a/src/classes/com/sun/opengl/impl/Project.java b/src/classes/com/sun/opengl/impl/Project.java index ea24062f6..183bd7e16 100755 --- a/src/classes/com/sun/opengl/impl/Project.java +++ b/src/classes/com/sun/opengl/impl/Project.java @@ -107,7 +107,7 @@ package com.sun.opengl.impl; import java.nio.*; import javax.media.opengl.*; -import com.sun.opengl.utils.*; +import com.sun.opengl.util.*; /** * Project.java @@ -162,7 +162,7 @@ public class Project { // Slice up one big buffer because some NIO implementations // allocate a huge amount of memory to back even the smallest of // buffers. - DoubleBuffer buf = BufferUtils.newDoubleBuffer(128); + DoubleBuffer buf = BufferUtil.newDoubleBuffer(128); int pos = 0; int sz = 16; matrixBuf = slice(buf, pos, sz); -- cgit v1.2.3