Java javax.media.j3d RenderingAttributes fields, constructors, methods, implement or subclass

Example usage for Java javax.media.j3d RenderingAttributes fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.media.j3d RenderingAttributes.

The text is from its open source code.

Field

intALLOW_ALPHA_TEST_VALUE_WRITE
Specifies that this RenderingAttributes object allows writing its alpha test value component information.
intALLOW_ALPHA_TEST_FUNCTION_WRITE
Specifies that this RenderingAttributes object allows writing its alpha test function component information.
intALLOW_DEPTH_ENABLE_READ
Specifies that this RenderingAttributes object allows reading its depth buffer enable and depth buffer write enable component information.
intALLOW_VISIBLE_WRITE
Specifies that this RenderingAttributes object allows writing its visibility information.
intALLOW_IGNORE_VERTEX_COLORS_WRITE
Specifies that this RenderingAttributes object allows writing its ignore vertex colors information.
intALLOW_RASTER_OP_WRITE
Specifies that this RenderingAttributes object allows writing its raster operation information.
intALWAYS
Specifies that pixels are always drawn irrespective of the values being tested.
intNEVER
Specifies that pixels are never drawn irrespective of the values being tested.
intEQUAL
Specifies that pixels are drawn if the two values being tested are equal.
intNOT_EQUAL
Specifies that pixels are drawn if the two values being tested are not equal.
intLESS
Specifies that pixels are drawn if the source/reference value is less than the destination/test value.
intLESS_OR_EQUAL
Specifies that pixels are drawn if the source/reference value is less than or equal to the destination/test value.
intGREATER
Specifies that pixels are drawn if the source/reference value is greater than the destination/test value.
intGREATER_OR_EQUAL
Specifies that pixels are drawn if the source/reference value is greater than or equal to the destination/test value.
intROP_COPY
Raster operation: DST = SRC.
intROP_XOR
Raster operation: DST = SRC ^ DST.

Constructor

Method

voidsetAlphaTestFunction(int function)
Set alpha test function.
voidsetAlphaTestValue(float value)
Set alpha test value used by alpha test function.
voidsetDepthBufferEnable(boolean state)
Enables or disables depth buffer mode for this RenderingAttributes component object.
voidsetDepthBufferWriteEnable(boolean state)
Enables or disables writing the depth buffer for this object.