diff options
author | Kevin Rushforth <[email protected]> | 2005-04-27 16:27:33 +0000 |
---|---|---|
committer | Kevin Rushforth <[email protected]> | 2005-04-27 16:27:33 +0000 |
commit | 76ec5b81d463f8cf8bd238dde273dc16789d7cb1 (patch) | |
tree | addbca4739932bba7570e40d18428d4250da2b8f /www | |
parent | 2e84c616a8f83545ad5cb08d899e872516e1f08c (diff) |
Sync web page with api-changes-1_4.txt from dev-1_4 branch
git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@228 ba19aa83-45c5-6ac9-afd3-db810772062c
Diffstat (limited to 'www')
-rw-r--r-- | www/j3d1_4/api-changes.html | 68 |
1 files changed, 42 insertions, 26 deletions
diff --git a/www/j3d1_4/api-changes.html b/www/j3d1_4/api-changes.html index ba9252a..4e090d0 100644 --- a/www/j3d1_4/api-changes.html +++ b/www/j3d1_4/api-changes.html @@ -69,12 +69,12 @@ I. New/deprecated fields, constructors, methods int texCoordSetCount, int[] texCoordSetMap, int vertexAttrCount, - int[] vertexAttrFormats, + int[] vertexAttrSizes, String[] vertexAttrNames) New methods: public int getVertexAttrCount() - public void getVertexAttrFormats(int[] vertexAttrFormats) + public void getVertexAttrSizes(int[] vertexAttrSizes) public void getVertexAttrNames(String[] vertexAttrNames) @@ -93,6 +93,26 @@ I. New/deprecated fields, constructors, methods New methods: public void addGraphStructureChangeListener(GraphStructureChangeListener listener) public void removeGraphStructureChangeListener(GraphStructureChangeListener listener) + public void addShaderErrorListener(ShaderErrorListener listener) + public void removeShaderErrorListener(ShaderErrorListener listener) + + + Locale + ------ + New methods: + public PickInfo[] pickAll( int mode, int flags, PickShape pickShape ) + public PickInfo[] pickAllSorted( int mode, int flags, PickShape pickShape ) + public PickInfo pickClosest( int mode, int flags, PickShape pickShape ) + public PickInfo pickAny( int mode, int flags, PickShape pickShape ) + + + BranchGroup + ----------- + New methods: + public PickInfo[] pickAll( int mode, int flags, PickShape pickShape ) + public PickInfo[] pickAllSorted( int mode, int flags, PickShape pickShape ) + public PickInfo pickClosest( int mode, int flags, PickShape pickShape ) + public PickInfo pickAny( int mode, int flags, PickShape pickShape ) Sensor @@ -151,46 +171,42 @@ III. New classes and interfaces (in javax.media.j3d) ------ public abstract class Shader extends NodeComponent + SourceCodeShader + ---------------- + public class SourceCodeShader extends Shader + ShaderProgram ------------- public abstract class ShaderProgram extends NodeComponent - CgShader - -------- - public abstract class CgShader extends Shader - - CgFragmentShader - ---------------- - public class CgFragmentShader extends CgShader - - CgVertexShader - -------------- - public class CgVertexShader extends CgShader - CgShaderProgram --------------- public class CgShaderProgram extends ShaderProgram - GLSLShader - ---------- - public abstract class GLSLShader extends Shader - - GLSLFragmentShader - ------------------ - public class GLSLFragmentShader extends GLSLShader - - GLSLVertexShader - ---------------- - public class GLSLVertexShader extends GLSLShader - GLSLShaderProgram ----------------- public class GLSLShaderProgram extends ShaderProgram + ShaderError + ----------- + public class ShaderError extends Object + + ShaderErrorListener + ------------------- + public interface ShaderErrorListener + GraphStructureChangeListener ---------------------------- public interface GraphStructureChangeListener + PickInfo + -------- + public class PickInfo extends Object + + PickInfo.IntersectionInfo + ------------------------- + public class PickInfo.IntersectionInfo extends Object + IV. Deprecated classes and interfaces (in javax.media.j3d) |