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

Packages that use BlendSettings
com.neovisionaries.android.opengl   
 

Uses of BlendSettings in com.neovisionaries.android.opengl
 

Methods in com.neovisionaries.android.opengl that return BlendSettings
 BlendSettings BlendSettings.apply()
          Apply the settings values that this instance holds to the underlying OpenGL ES implementation.
 BlendSettings BlendSettings.disable()
          Disable blending (call glDisable(GL_BLEND)).
 BlendSettings BlendSettings.enable()
          Enable blending (call glEnable(GL_BLEND)).
 BlendSettings BlendSettings.setAlphaOperator(BlendOperator operator)
          Set the blending operator for alpha.
 BlendSettings BlendSettings.setColor(float red, float green, float blue, float alpha)
          Set the constant blending color.
 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.setOperator(BlendOperator operator)
          Set the blending operator for both RGB and alpha.
 BlendSettings BlendSettings.setRGBOperator(BlendOperator operator)
          Set the blending operator for RGB.
 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.