From dd609edf58523fa8f0638ede1c11c7494e9d877f Mon Sep 17 00:00:00 2001 From: Kevin Rushforth Date: Thu, 12 May 2005 03:40:29 +0000 Subject: Web page updates for new functionality. git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@266 ba19aa83-45c5-6ac9-afd3-db810772062c --- www/j3d1_4/api-changes.html | 35 ++++++++++++++++++++++++++++++----- www/j3d1_4/proposed-changes.html | 20 ++++++++------------ 2 files changed, 38 insertions(+), 17 deletions(-) (limited to 'www/j3d1_4') diff --git a/www/j3d1_4/api-changes.html b/www/j3d1_4/api-changes.html index b058b38..6f52187 100644 --- a/www/j3d1_4/api-changes.html +++ b/www/j3d1_4/api-changes.html @@ -49,6 +49,12 @@ to the Java 3D API.
 I. New/deprecated fields, constructors, methods
 
+    Canvas3D
+    --------
+    New methods:
+	public boolean isShadingLanguageSupported(int shadingLanguage)
+
+
     SceneGraphObject
     ----------------
     New methods:
@@ -69,13 +75,11 @@ I. New/deprecated fields, constructors, methods
 			     int texCoordSetCount,
 			     int[] texCoordSetMap,
 			     int vertexAttrCount,
-			     int[] vertexAttrSizes,
-			     String[] vertexAttrNames)
+			     int[] vertexAttrSizes)
 
     New methods:
 	public int getVertexAttrCount()
 	public void getVertexAttrSizes(int[] vertexAttrSizes)
-	public void getVertexAttrNames(String[] vertexAttrNames)
 	public void setVertexAttr(int vertexAttrNum, int index,
 				  float[] vertexAttr)
 	public void setVertexAttr(int vertexAttrNum, int index,
@@ -137,8 +141,7 @@ I. New/deprecated fields, constructors, methods
 			     int texCoordSetCount,
 			     int[] texCoordSetMap,
 			     int vertexAttrCount,
-			     int[] vertexAttrSizes,
-			     String[] vertexAttrNames)
+			     int[] vertexAttrSizes)
 
 
     Node
@@ -195,6 +198,28 @@ I. New/deprecated fields, constructors, methods
 	public void getRead(Transform3D read, long deltaT)
 
 
+    RenderingAttributes
+    -----------
+    New fields:
+	public static final int ALLOW_DEPTH_TEST_FUNCTION_READ
+	public static final int ALLOW_DEPTH_TEST_FUNCTION_WRITE
+
+    New constructors:
+	public RenderingAttributes(boolean depthBufferEnable,
+				   boolean depthBufferWriteEnable,
+				   int depthTestFunction,
+				   float alphaTestValue,
+				   int alphaTestFunction,
+				   boolean visible,
+				   boolean ignoreVertexColors,
+				   boolean rasterOpEnable,
+				   int rasterOp)
+
+    New methods:
+	public void setDepthTestFunction(int function)
+	public int getDepthTestFunction()
+
+
 II. Reparented classes
 
     NONE
diff --git a/www/j3d1_4/proposed-changes.html b/www/j3d1_4/proposed-changes.html
index 4ef95ed..a0d33fd 100644
--- a/www/j3d1_4/proposed-changes.html
+++ b/www/j3d1_4/proposed-changes.html
@@ -70,8 +70,14 @@ to be called on live/compiled scene graph
 method and ALLOW_LOCALE_READ
 capability bit to Node
-class
- +class +
  • Add a new attribute for depth test function to +RenderingAttributes: public get/setDepthTestFunction(int function) +methods that takes as values one of: ALWAYS, NEVER, +EQUAL, NOT_EQUAL, LESS, LESS_OR_EQUAL, GREATER, GREATER_OR_EQUAL. +The default value is LESS_OR_EQUAL for backward +compatibility.
  • This is a list of features that we propose to deprecate1 in @@ -113,16 +119,6 @@ feature will not happen without an someone from the community volunteering -to drive it. -

  • Add a new attribute for depth test function to -RenderingAttributes: public get/setDepthTestFunction(int function) -methods that takes as values one of: ALWAYS, NEVER, -EQUAL, NOT_EQUAL, LESS, LESS_OR_EQUAL, GREATER, GREATER_OR_EQUAL. -The default value would be LESS_OR_EQUAL for backward -compatibility. Note: this feature -will not -happen -without an someone from the community volunteering to drive it.
  • Method to retrieve the geometry data from the tessellation of a -- cgit v1.2.3