From f054688c24cea7adfd4e5134575e1eec25c97d05 Mon Sep 17 00:00:00 2001 From: phil Date: Mon, 31 Oct 2016 19:23:56 +1300 Subject: Gl2ES2 limitations description in dep class improved --- src/main/java/org/jogamp/java3d/Jogl2es2DEPPipeline.java | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'src/main/java') 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.";// -- cgit v1.2.3