aboutsummaryrefslogtreecommitdiffstats
path: root/www/j3d1_4/api-changes.html
diff options
context:
space:
mode:
Diffstat (limited to 'www/j3d1_4/api-changes.html')
-rw-r--r--www/j3d1_4/api-changes.html35
1 files changed, 30 insertions, 5 deletions
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.
<pre>
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