aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp/opengl/util/GLFixedArrayHandlerFlat.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-11-11 08:26:10 +0100
committerSven Gothel <[email protected]>2012-11-11 08:26:10 +0100
commita2bc4bcf26ce392d892c8cba5071d3f3877ed0c7 (patch)
tree15d41c2c7e088483862c427579a040b851ba8e1d /src/jogl/classes/jogamp/opengl/util/GLFixedArrayHandlerFlat.java
parent31d64a8e03e9c031181b32af55dc30ee3baad976 (diff)
PMVMatrix: Add 'Frustum glGetFrustum()' adding same dirty/request methodology as for Mvi and Mvit
Allows user to derive Frustum from updated P + MV Clarify method name for clearing all update request: - disableMviMvitUpdate() -> clearAllUpdateRequests()
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/util/GLFixedArrayHandlerFlat.java')
0 files changed, 0 insertions, 0 deletions
an class="hl com"> * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE * POSSIBILITY OF SUCH DAMAGES. * * You acknowledge that this software is not designed, licensed or * intended for use in the design, construction, operation or * maintenance of any nuclear facility. * * $Revision$ * $Date$ * $State$ */ package com.sun.j3d.loaders.lw3d; /** * This class has utility functions for printing out debugging information. */ class DebugOutput { int validOutput = 0; final static int TRACE = 1, VALUES = 2, MISC = 4, LINE_TRACE = 8; final static int NONE = 0, EXCEPTION = 16, TIME = 32, WARNING = 64; DebugOutput(int outputTypes) { validOutput = outputTypes; } void setValidOutput(int outputTypes) { validOutput = outputTypes; } int getValidOutput() { return validOutput; } void print(int outputType, String theOutput) { if ((outputType & validOutput) > 0) { System.out.print(theOutput); } } void println(int outputType, String theOutput) { if ((outputType & validOutput) > 0) System.out.println(theOutput); } }