Example usage for Java javax.media.j3d RenderingAttributes fields, constructors, methods, implement or subclass
The text is from its open source code.
int | ALLOW_ALPHA_TEST_VALUE_WRITE Specifies that this RenderingAttributes object allows writing its alpha test value component information. |
int | ALLOW_ALPHA_TEST_FUNCTION_WRITE Specifies that this RenderingAttributes object allows writing its alpha test function component information. |
int | ALLOW_DEPTH_ENABLE_READ Specifies that this RenderingAttributes object allows reading its depth buffer enable and depth buffer write enable component information. |
int | ALLOW_VISIBLE_WRITE Specifies that this RenderingAttributes object allows writing its visibility information. |
int | ALLOW_IGNORE_VERTEX_COLORS_WRITE Specifies that this RenderingAttributes object allows writing its ignore vertex colors information. |
int | ALLOW_RASTER_OP_WRITE Specifies that this RenderingAttributes object allows writing its raster operation information. |
int | ALWAYS Specifies that pixels are always drawn irrespective of the values being tested. |
int | NEVER Specifies that pixels are never drawn irrespective of the values being tested. |
int | EQUAL Specifies that pixels are drawn if the two values being tested are equal. |
int | NOT_EQUAL Specifies that pixels are drawn if the two values being tested are not equal. |
int | LESS Specifies that pixels are drawn if the source/reference value is less than the destination/test value. |
int | LESS_OR_EQUAL Specifies that pixels are drawn if the source/reference value is less than or equal to the destination/test value. |
int | GREATER Specifies that pixels are drawn if the source/reference value is greater than the destination/test value. |
int | GREATER_OR_EQUAL Specifies that pixels are drawn if the source/reference value is greater than or equal to the destination/test value. |
int | ROP_COPY Raster operation: DST = SRC . |
int | ROP_XOR Raster operation: DST = SRC ^ DST . |
RenderingAttributes() Constructs a RenderingAttributes object with default parameters. | |
RenderingAttributes(boolean depthBufferEnable, boolean depthBufferWriteEnable, float alphaTestValue, int alphaTestFunction, boolean visible, boolean ignoreVertexColors, boolean rasterOpEnable, int rasterOp) Constructs a RenderingAttributes object with specified values |
void | setAlphaTestFunction(int function) Set alpha test function. |
void | setAlphaTestValue(float value) Set alpha test value used by alpha test function. |
void | setDepthBufferEnable(boolean state) Enables or disables depth buffer mode for this RenderingAttributes component object. |
void | setDepthBufferWriteEnable(boolean state) Enables or disables writing the depth buffer for this object. |