package javax.microedition.m3g;

public class CompositingMode extends Object3D
{
 public static final int ALPHA = 64;
 public static final int ALPHA_ADD = 65;
 public static final int MODULATE = 66;
 public static final int MODULATE_X2 = 67;
 public static final int REPLACE = 68;

 public CompositingMode()
 {
 }
 
 public void setBlending(int)
 {
 }
 
 public int getBlending()
 {
  return 0;
 }
 
 public void setAlphaThreshold(float)
 {
 }
 
 public float getAlphaThreshold()
 {
  return 0.0f;
 }
 
 public void setAlphaWriteEnable(boolean)
 {
 }
 
 public boolean isAlphaWriteEnabled()
 {
  return false;
 }
 
 public void setColorWriteEnable(boolean)
 {
 }
 
 public boolean isColorWriteEnabled()
 {
  return false;
 }
 
 public void setDepthWriteEnable(boolean)
 {
 }
 
 public boolean isDepthWriteEnabled()
 {
  return false;
 }
 
 public void setDepthTestEnable(boolean)
 {
 }
 
 public boolean isDepthTestEnabled()
 {
  return false;
 }
 
 public void setDepthOffset(float, float)
 {
 }
 
 public float getDepthOffsetFactor()
 {
  return 0.0f;
 }
 
 public float getDepthOffsetUnits()
 {
  return 0.0f;
 }
 
}