aboutsummaryrefslogtreecommitdiffstats
path: root/src/classes/com/sun/opengl/impl/tessellator
diff options
context:
space:
mode:
authorgfxadmin <[email protected]>2006-07-21 22:45:09 +0000
committergfxadmin <[email protected]>2006-07-21 22:45:09 +0000
commitddddf3b04572f6ebd2fd5dc8e0a34b0186ce3e72 (patch)
tree4d2dd42da0d9b910459c7efc5638158480a5c9c8 /src/classes/com/sun/opengl/impl/tessellator
parente552d800ee9df3761108c044342612c8bda1f304 (diff)
Issue number:
Obtained from: Submitted by: Travis Reviewed by: Sun is adding an alternative license term to the SGI Free B license which is permitted under that license. We are removing a couple of provisions from the SGI Free B license to make the license more liberal for our end users of JOGL. So these changes are just communication of that. There are no actual source code changes, just changes to the license file and the license text in each source code file. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@856 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/classes/com/sun/opengl/impl/tessellator')
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/ActiveRegion.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/CachedVertex.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/Dict.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/DictNode.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/GLUface.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/GLUhalfEdge.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/GLUmesh.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/GLUtessellatorImpl.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/GLUvertex.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/Geom.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/Mesh.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/Normal.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/PriorityQ.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/PriorityQHeap.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/PriorityQSort.java10
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/Render.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/Sweep.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/TessMono.java12
-rw-r--r--src/classes/com/sun/opengl/impl/tessellator/TessState.java12
19 files changed, 208 insertions, 18 deletions
diff --git a/src/classes/com/sun/opengl/impl/tessellator/ActiveRegion.java b/src/classes/com/sun/opengl/impl/tessellator/ActiveRegion.java
index b626157fe..e013d21c1 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/ActiveRegion.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/ActiveRegion.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/CachedVertex.java b/src/classes/com/sun/opengl/impl/tessellator/CachedVertex.java
index 70260d615..a9bcc4f80 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/CachedVertex.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/CachedVertex.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/Dict.java b/src/classes/com/sun/opengl/impl/tessellator/Dict.java
index 84da2dda6..c8435ce69 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/Dict.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/Dict.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/DictNode.java b/src/classes/com/sun/opengl/impl/tessellator/DictNode.java
index 698121392..1ae71053b 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/DictNode.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/DictNode.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/GLUface.java b/src/classes/com/sun/opengl/impl/tessellator/GLUface.java
index 225c5460c..f0df8d5e4 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/GLUface.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/GLUface.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/GLUhalfEdge.java b/src/classes/com/sun/opengl/impl/tessellator/GLUhalfEdge.java
index d58df6278..6a46cfdaf 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/GLUhalfEdge.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/GLUhalfEdge.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/GLUmesh.java b/src/classes/com/sun/opengl/impl/tessellator/GLUmesh.java
index d1ed8286b..a6ecf5382 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/GLUmesh.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/GLUmesh.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/GLUtessellatorImpl.java b/src/classes/com/sun/opengl/impl/tessellator/GLUtessellatorImpl.java
index 98a0fba3a..c004a5281 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/GLUtessellatorImpl.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/GLUtessellatorImpl.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/GLUvertex.java b/src/classes/com/sun/opengl/impl/tessellator/GLUvertex.java
index 05836beda..68a02a103 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/GLUvertex.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/GLUvertex.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/Geom.java b/src/classes/com/sun/opengl/impl/tessellator/Geom.java
index 10e3d8050..11e17d535 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/Geom.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/Geom.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/Mesh.java b/src/classes/com/sun/opengl/impl/tessellator/Mesh.java
index f5a81f65d..2f4d5e3cc 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/Mesh.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/Mesh.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/Normal.java b/src/classes/com/sun/opengl/impl/tessellator/Normal.java
index 98d4c50a1..2bbfbb3a6 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/Normal.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/Normal.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/PriorityQ.java b/src/classes/com/sun/opengl/impl/tessellator/PriorityQ.java
index 84c00eb82..df8a5b383 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/PriorityQ.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/PriorityQ.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/PriorityQHeap.java b/src/classes/com/sun/opengl/impl/tessellator/PriorityQHeap.java
index f220a207e..75e8bebcb 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/PriorityQHeap.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/PriorityQHeap.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/PriorityQSort.java b/src/classes/com/sun/opengl/impl/tessellator/PriorityQSort.java
index 426c2d4ca..200c88c67 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/PriorityQSort.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/PriorityQSort.java
@@ -15,6 +15,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/Render.java b/src/classes/com/sun/opengl/impl/tessellator/Render.java
index a7a126a4c..17d602e42 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/Render.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/Render.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/Sweep.java b/src/classes/com/sun/opengl/impl/tessellator/Sweep.java
index 901207d31..dee53552a 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/Sweep.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/Sweep.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/TessMono.java b/src/classes/com/sun/opengl/impl/tessellator/TessMono.java
index ef2230c35..1f4a653e0 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/TessMono.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/TessMono.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
diff --git a/src/classes/com/sun/opengl/impl/tessellator/TessState.java b/src/classes/com/sun/opengl/impl/tessellator/TessState.java
index 5e96a20a1..8364de2a3 100644
--- a/src/classes/com/sun/opengl/impl/tessellator/TessState.java
+++ b/src/classes/com/sun/opengl/impl/tessellator/TessState.java
@@ -1,5 +1,5 @@
/*
-* Portions Copyright (C) 2003 Sun Microsystems, Inc.
+* Portions Copyright (C) 2003-2006 Sun Microsystems, Inc.
* All rights reserved.
*/
@@ -20,6 +20,16 @@
** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
**
+** NOTE: The Original Code (as defined below) has been licensed to Sun
+** Microsystems, Inc. ("Sun") under the SGI Free Software License B
+** (Version 1.1), shown above ("SGI License"). Pursuant to Section
+** 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+** you under an alternative license ("Alternative License"). This
+** Alternative License includes all of the provisions of the SGI License
+** except that Section 2.2 and 11 are omitted. Any differences between
+** the Alternative License and the SGI License are offered solely by Sun
+** and not by SGI.
+**
** Original Code. The Original Code is: OpenGL Sample Implementation,
** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.