Searched defs:dstSurf (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DICompositeContext.java40 ImageSurface srcSurf, dstSurf; field in class:ICompositeContext
50 dstSurf.dispose();
80 dstSurf = new ImageSurface(dstCM, dstOut);
85 NativeImageBlitter.getInstance().blit(0, 0, srcSurf, 0, 0, dstSurf,
H A DCommonGraphics2D.java126 protected Surface dstSurf = null; field in class:CommonGraphics2D
335 blitter.blit(0, 0, srcSurf, x, y, dstSurf, w, h, (AffineTransform) transform.clone(),
378 blitter.blit(0, 0, srcSurf, x, y, dstSurf, w, h,
384 blitter.blit(0, 0, srcSurf, x, y, dstSurf, w, h,
439 blitter.blit(srcX, srcY, srcSurf, dstX, dstY, dstSurf, srcW, srcH,
445 blitter.blit(srcX, srcY, srcSurf, dstX, dstY, dstSurf, srcW, srcH,
477 blitter.blit(0, 0, srcSurf, x, y, dstSurf, w, h,
485 blitter.blit(0, 0, srcSurf, x, y, dstSurf, w, h,
523 blitter.blit(0, 0, srcSurf, 0, 0, dstSurf, w, h, xform, composite,
1105 blitter.blit(0, 0, srcSurf, x, y, dstSurf,
[all...]
/frameworks/base/awt/org/apache/harmony/awt/gl/render/
H A DBlitter.java39 int dstX, int dstY, Surface dstSurf, int width, int height,
45 int dstX, int dstY, Surface dstSurf, int width, int height,
50 int dstX, int dstY, Surface dstSurf, int width, int height,
38 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) argument
44 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) argument
49 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip) argument
H A DNullBlitter.java41 Surface dstSurf, int width, int height, AffineTransform sysxform,
47 Surface dstSurf, int width, int height, AffineTransform sysxform,
52 Surface dstSurf, int width, int height, Composite comp,
40 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) argument
46 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) argument
51 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip) argument
H A DNativeImageBlitter.java53 Surface dstSurf, int width, int height, AffineTransform sysxform,
58 JavaBlitter.inst.blit(srcX, srcY, srcSurf, dstX, dstY, dstSurf, width, height,
62 blit(srcX, srcY, srcSurf, dstX, dstY, dstSurf, width, height,
73 blit(srcX, srcY, srcSurf, 0, 0, dstSurf, width, height,
80 Surface dstSurf, int width, int height, AffineTransform sysxform,
84 JavaBlitter.inst.blit(srcX, srcY, srcSurf, dstX, dstY, dstSurf, width, height,
93 blit(srcX, srcY, srcSurf, dstX, dstY, dstSurf,
100 dstSurf, width, height,
111 dstSurf, width, height,
119 Surface dstSurf, in
52 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) argument
79 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) argument
118 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip) argument
[all...]
H A DJavaBlitter.java83 Surface dstSurf, int width, int height, AffineTransform sysxform,
88 blit(srcX, srcY, srcSurf, dstX, dstY, dstSurf, width, height,
99 blit(srcX, srcY, srcSurf, 0, 0, dstSurf, width, height,
106 Surface dstSurf, int width, int height, AffineTransform sysxform,
118 blit(srcX, srcY, srcSurf, dstX, dstY, dstSurf,
132 ColorModel dstCM = dstSurf.getColorModel();
133 WritableRaster dstR = dstSurf.getRaster();
142 Surface dstSurf, int width, int height, Composite comp,
147 dstSurf.getWidth(), dstSurf
82 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) argument
105 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) argument
141 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip) argument
[all...]
/frameworks/base/awt/com/android/internal/awt/
H A DAndroidJavaBlitter.java78 Surface dstSurf, int width, int height, AffineTransform sysxform,
83 blit(srcX, srcY, srcSurf, dstX, dstY, dstSurf, width, height,
94 blit(srcX, srcY, srcSurf, 0, 0, dstSurf, width, height,
101 Surface dstSurf, int width, int height, AffineTransform sysxform,
113 simpleBlit(srcX, srcY, srcSurf, dstX, dstY, dstSurf,
127 ColorModel dstCM = dstSurf.getColorModel();
128 WritableRaster dstR = dstSurf.getRaster();
137 Surface dstSurf, int width, int height, Composite comp,
156 Surface dstSurf, int width, int height, Composite comp,
161 dstSurf
77 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) argument
100 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) argument
136 simpleBlit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip) argument
155 blit(int srcX, int srcY, Surface srcSurf, int dstX, int dstY, Surface dstSurf, int width, int height, Composite comp, Color bgcolor, MultiRectArea clip) argument
[all...]
H A DAndroidGraphics2D.java84 protected Surface dstSurf = null; field in class:AndroidGraphics2D
152 dstSurf = new ImageSurface(cm, wr);
803 blitter.blit(0, 0, srcSurf, x, y, dstSurf, w, h, (AffineTransform) transform.clone(),
846 blitter.blit(0, 0, srcSurf, x, y, dstSurf, w, h,
852 blitter.blit(0, 0, srcSurf, x, y, dstSurf, w, h,
907 blitter.blit(srcX, srcY, srcSurf, dstX, dstY, dstSurf, srcW, srcH,
913 blitter.blit(srcX, srcY, srcSurf, dstX, dstY, dstSurf, srcW, srcH,
945 blitter.blit(0, 0, srcSurf, x, y, dstSurf, w, h,
953 blitter.blit(0, 0, srcSurf, x, y, dstSurf, w, h,
991 blitter.blit(0, 0, srcSurf, 0, 0, dstSurf,
[all...]

Completed in 597 milliseconds