| java.lang.Object org.apache.harmony.awt.gl.render.JavaBlitter
JavaBlitter | public class JavaBlitter implements Blitter(Code) | | Java implenetation of the Blitter interface. Using when we can't
draw images natively.
|
Method Summary | |
void | alphaCompose(int srcX, int srcY, ColorModel srcCM, Raster srcRast, int dstX, int dstY, ColorModel dstCM, WritableRaster dstRast, int width, int height, int rule, float alpha, Color bgcolor) | public void | blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, AffineTransform sysxform, AffineTransform xform, Composite comp, Color bgcolor, MultiRectArea clip) | public void | blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, AffineTransform sysxform, Composite comp, Color bgcolor, MultiRectArea clip) | public void | blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip) | public static Rectangle2D | getBounds2D(AffineTransform at, Rectangle r) | public static JavaBlitter | getInstance() | public void | javaBlt(int srcX, int srcY, int srcW, int srcH, ColorModel srcCM, Raster srcRast, int dstX, int dstY, int dstW, int dstH, ColorModel dstCM, WritableRaster dstRast, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip) | void | xorCompose(int srcX, int srcY, ColorModel srcCM, Raster srcRast, int dstX, int dstY, ColorModel dstCM, WritableRaster dstRast, int width, int height, Color xorcolor) |
AlphaCompositeMode | final static int AlphaCompositeMode(Code) | | |
XORMode | final static int XORMode(Code) | | |
divLUT | static byte divLUT(Code) | | |
mulLUT | static byte mulLUT(Code) | | Instead of multiplication and division we are using values from
Lookup tables.
|
alphaCompose | void alphaCompose(int srcX, int srcY, ColorModel srcCM, Raster srcRast, int dstX, int dstY, ColorModel dstCM, WritableRaster dstRast, int width, int height, int rule, float alpha, Color bgcolor)(Code) | | |
blit | public void blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, AffineTransform sysxform, AffineTransform xform, Composite comp, Color bgcolor, MultiRectArea clip)(Code) | | |
blit | public void blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, AffineTransform sysxform, Composite comp, Color bgcolor, MultiRectArea clip)(Code) | | |
blit | public void blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip)(Code) | | |
javaBlt | public void javaBlt(int srcX, int srcY, int srcW, int srcH, ColorModel srcCM, Raster srcRast, int dstX, int dstY, int dstW, int dstH, ColorModel dstCM, WritableRaster dstRast, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip)(Code) | | |
xorCompose | void xorCompose(int srcX, int srcY, ColorModel srcCM, Raster srcRast, int dstX, int dstY, ColorModel dstCM, WritableRaster dstRast, int width, int height, Color xorcolor)(Code) | | |
|
|