Uses of Class
com.neovisionaries.android.opengl.BlendFactor

Packages that use BlendFactor
com.neovisionaries.android.opengl   
 

Uses of BlendFactor in com.neovisionaries.android.opengl
 

Methods in com.neovisionaries.android.opengl that return BlendFactor
 BlendFactor BlendSettings.getDestinationAlphaFactor()
          Get the blending factor for alpha of destination.
 BlendFactor BlendSettings.getDestinationRGBFactor()
          Get the blending factor for RGB of destination.
 BlendFactor BlendSettings.getSourceAlphaFactor()
          Get the blending factor for alpha of source.
 BlendFactor BlendSettings.getSourceRGBFactor()
          Get the blending factor for RGB of source.
static BlendFactor BlendFactor.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BlendFactor[] BlendFactor.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.neovisionaries.android.opengl with parameters of type BlendFactor
 BlendSettings BlendSettings.setDestinationAlphaFactor(BlendFactor factor)
          Set the blending factor for alpha of destination.
 BlendSettings BlendSettings.setDestinationFactor(BlendFactor factor)
          Set the blending factor for destination.
 BlendSettings BlendSettings.setDestinationRGBFactor(BlendFactor factor)
          Set the blending factor for RGB of destination.
 BlendSettings BlendSettings.setSourceAlphaFactor(BlendFactor factor)
          Set the blending factor for alpha of source.
 BlendSettings BlendSettings.setSourceFactor(BlendFactor factor)
          Set the blending factor for source.
 BlendSettings BlendSettings.setSourceRGBFactor(BlendFactor factor)
          Set the blending factor for RGB of source.