diff options
author | phil <[email protected]> | 2016-10-31 19:23:56 +1300 |
---|---|---|
committer | phil <[email protected]> | 2016-10-31 19:23:56 +1300 |
commit | f054688c24cea7adfd4e5134575e1eec25c97d05 (patch) | |
tree | b77f5fc84adebca65cb9af8bfff4d20b1dd244ca /src | |
parent | f8a6e9c5ccf218442420633346e89b83a8ce3a64 (diff) |
Gl2ES2 limitations description in dep class improved
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/org/jogamp/java3d/Jogl2es2DEPPipeline.java | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/main/java/org/jogamp/java3d/Jogl2es2DEPPipeline.java b/src/main/java/org/jogamp/java3d/Jogl2es2DEPPipeline.java index f0fffb7..96fb4d1 100644 --- a/src/main/java/org/jogamp/java3d/Jogl2es2DEPPipeline.java +++ b/src/main/java/org/jogamp/java3d/Jogl2es2DEPPipeline.java @@ -29,12 +29,15 @@ package org.jogamp.java3d; abstract class Jogl2es2DEPPipeline extends Pipeline { public static final String VALID_FORMAT_MESSAGE = "The Gl2ES2 pipeline only supports a subset of the Geometry data types and formats. \n"// - + "You cannot use QuadArray or IndexedQuadArray. \n"// - + "Texture Coordinate generation is not supported. \n" // - + "Texture Filter, Sharpen and combine are not supported. \n"// - + "Texture3D is not supported. \n"// - + "Accum style anti-aliasing, rasters and decals are also not supported. \n"// + "Coordinates must be defined and float type, colors must be float type, if defined. \n"// + + "J3DGraphics2D of Canvas3D is not supported \n"// + + "Rasters and Decaling is not supported. \n"// + + "Model Clip is not supported and must be reimplemented in shaders \n"// + + "QuadArray or IndexedQuadArray cannot be supported. \n"// + + "Texture Coordinate generation cannot be supported. \n" // + + "Texture Lod, Filter, Sharpen and Combine cannot be supported. \n"// + + "Texture3D cannot be supported. \n"// + + "Accum style anti-aliasing cannot be supported. \n"// + "It is strongly recomended that you use the format GeometryArray.USE_NIO_BUFFER = true. \n"// + "Note LineArray and LineStripArray will not render as nicely as the fixed function pipeline.";// |