aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2007-04-19 16:48:07 +0000
committerKenneth Russel <[email protected]>2007-04-19 16:48:07 +0000
commitc426fdeb659b1eb6453b13a7f5e90622a78d49de (patch)
tree6457121ac6dc6cbb5e35cee753b4b860ae08870e
parent978fe192bc692fbc738f9030a2b1eceeff8f2589 (diff)
Updated link to most recent archived JNLP to 1.1.0, Javadoc window
title, and version history in spec overview; minor Javadoc fixes git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@1208 232f8b59-042b-4e1e-8c03-345bb8c30851
-rw-r--r--doc/userguide/index.html2
-rw-r--r--make/build.xml2
-rw-r--r--make/spec-overview.html8
-rwxr-xr-xsrc/classes/com/sun/opengl/util/j2d/Overlay.java9
4 files changed, 13 insertions, 8 deletions
diff --git a/doc/userguide/index.html b/doc/userguide/index.html
index 60230b40b..949cafb75 100644
--- a/doc/userguide/index.html
+++ b/doc/userguide/index.html
@@ -176,7 +176,7 @@ build. For reference, the extension JNLP file for the most recent
official JSR-231 build is available at
<PRE>
- &lt;extension name="jogl" href="http://download.java.net/media/jogl/builds/archive/jsr-231-1.0.0/jogl.jnlp" /&gt;
+ &lt;extension name="jogl" href="http://download.java.net/media/jogl/builds/archive/jsr-231-1.1.0/jogl.jnlp" /&gt;
</PRE>
Note that before JOGL transitioned to the JSR-231 APIs, there were
diff --git a/make/build.xml b/make/build.xml
index 9e8d30a54..31432132e 100644
--- a/make/build.xml
+++ b/make/build.xml
@@ -261,7 +261,7 @@
<property name="javadoc.spec" value="${project.root}/javadoc_spec" />
<property name="javadoc.dev" value="${project.root}/javadoc_jogl_dev" />
<property name="javadoc.link" value="http://java.sun.com/j2se/1.4.2/docs/api/" />
- <property name="javadoc.windowtitle" value="JOGL API -- JSR-231 Draft Public Review Specification" />
+ <property name="javadoc.windowtitle" value="JOGL API -- JSR-231 ${base_version} Specification" />
<property name="javadoc.overview" value="spec-overview.html" />
<property name="javadoc.spec.packagenames" value="javax.media.opengl,javax.media.opengl.glu" />
<property name="javadoc.packagenames" value="${javadoc.spec.packagenames},com.sun.opengl.util,com.sun.opengl.util.j2d,com.sun.opengl.util.texture,com.sun.opengl.util.texture.spi" />
diff --git a/make/spec-overview.html b/make/spec-overview.html
index a187e2c51..1e52669ed 100644
--- a/make/spec-overview.html
+++ b/make/spec-overview.html
@@ -356,7 +356,13 @@ http://www.opengl.org/documentation/specs/version2.0/glspec20.pdf</a></blockquot
<h3>Revision History<br>
</h3>
-<pre>Early Draft Review, October/November 2005<br><br>Public Review, December/January 2005 <br><br>Proposed Final Draft Review, February/March 2006<br></pre>
+<ul>
+<li> Early Draft Review, October/November 2005
+<li> Public Review, December/January 2005
+<li> Proposed Final Draft Review, February/March 2006
+<li> 1.0.0 Final Release, September 2006
+<li> 1.1.0 Maintenance Release, April 2007
+</ul>
<br>
<br>
<br>
diff --git a/src/classes/com/sun/opengl/util/j2d/Overlay.java b/src/classes/com/sun/opengl/util/j2d/Overlay.java
index 7e9caf477..6b7ac4b9b 100755
--- a/src/classes/com/sun/opengl/util/j2d/Overlay.java
+++ b/src/classes/com/sun/opengl/util/j2d/Overlay.java
@@ -92,9 +92,9 @@ public class Overlay {
/** Marks the given region of the overlay as dirty. This region, and
any previously set dirty regions, will be automatically
synchronized with the underlying Texture during the next {@link
- #getTexture getTexture} operation, at which point the dirty
- region will be cleared. It is not necessary for an OpenGL
- context to be current when this method is called.
+ #draw draw} or {@link #drawAll drawAll} operation, at which
+ point the dirty region will be cleared. It is not necessary for
+ an OpenGL context to be current when this method is called.
@param x the x coordinate (in Java 2D coordinates -- relative to
upper left) of the region to update
@@ -103,8 +103,7 @@ public class Overlay {
@param width the width of the region to update
@param height the height of the region to update
- @throws GLException If an OpenGL context is not current when this method is called
- */
+ @throws GLException If an OpenGL context is not current when this method is called */
public void markDirty(int x, int y, int width, int height) {
renderer.markDirty(x, y, width, height);
}