Uses of Class
com.threerings.opengl.renderer.state.AlphaState

Packages that use AlphaState
com.threerings.opengl.renderer.config Renderer configuration bits. 
com.threerings.opengl.renderer.state   
 

Uses of AlphaState in com.threerings.opengl.renderer.config
 

Methods in com.threerings.opengl.renderer.config that return AlphaState
 AlphaState AlphaStateConfig.getState()
          Returns the corresponding alpha state.
 

Uses of AlphaState in com.threerings.opengl.renderer.state
 

Fields in com.threerings.opengl.renderer.state declared as AlphaState
static AlphaState AlphaState.ADDITIVE
          An alpha state for additive objects.
static AlphaState AlphaState.MASKED
          An alpha state for masked opaque objects.
static AlphaState AlphaState.OPAQUE
          An alpha state for completely opaque objects.
static AlphaState AlphaState.PREMULTIPLIED
          An alpha state for objects with premultiplied alpha.
static AlphaState AlphaState.TRANSLUCENT
          An alpha state for translucent objects.
 

Methods in com.threerings.opengl.renderer.state that return AlphaState
static AlphaState AlphaState.getInstance(AlphaState state)
          If there is a shared equivalent to the specified state, this method will return the shared state; otherwise, it will simply return the parameter.
static AlphaState AlphaState.getInstance(int alphaTestFunc, float alphaTestRef, int srcBlendFactor, int destBlendFactor)
          If there is a shared instance with the supplied parameters, returns a reference to it; otherwise, returns a new state with the parameters.
static AlphaState AlphaState.getTestInstance(float reference)
          Returns an alpha state that only passes fragments with alpha values greater than or equal to the supplied value, then blends them with the destination.
 

Methods in com.threerings.opengl.renderer.state with parameters of type AlphaState
static AlphaState AlphaState.getInstance(AlphaState state)
          If there is a shared equivalent to the specified state, this method will return the shared state; otherwise, it will simply return the parameter.
 



Copyright © 2011. All Rights Reserved.