HomeSort by relevance Sort by last modified time
    Searched full:srcrect (Results 76 - 100 of 111) sorted by null

1 2 34 5

  /external/webkit/Source/WebCore/svg/
SVGPreserveAspectRatio.h 63 void transformRect(FloatRect& destRect, FloatRect& srcRect);
  /frameworks/base/include/media/stagefright/
YUVCanvas.h 54 const Rect& srcRect,
  /external/webkit/Source/WebCore/platform/graphics/
FloatRect.h 220 // Map rect r from srcRect to an equivalent rect in destRect.
221 FloatRect mapRect(const FloatRect& r, const FloatRect& srcRect, const FloatRect& destRect);
ImageBuffer.h 108 void draw(GraphicsContext*, ColorSpace styleColorSpace, const FloatRect& destRect, const FloatRect& srcRect = FloatRect(0, 0, -1, -1),
110 void drawPattern(GraphicsContext*, const FloatRect& srcRect, const AffineTransform& patternTransform,
BitmapImage.h 186 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator);
189 virtual void drawPattern(GraphicsContext*, const FloatRect& srcRect, const AffineTransform& patternTransform,
Gradient.h 145 virtual void adjustParametersForTiledDrawing(IntSize& size, FloatRect& srcRect);
  /external/webkit/Source/WebCore/platform/graphics/haiku/
ImageHaiku.cpp 111 BRect srcRect(src);
117 ctxt->platformContext()->DrawBitmapAsync(image, srcRect, dstRect);
  /external/webkit/Source/WebCore/platform/graphics/wince/
SharedBitmap.h 84 void draw(GraphicsContext* ctxt, const IntRect& dstRect, const IntRect& srcRect, ColorSpace styleColorSpace, CompositeOperator compositeOp);
87 void draw(HDC, const IntRect& dstRect, const IntRect& srcRect, CompositeOperator compositeOp);
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_RLEaccel.c 783 Uint8 *dstbuf, SDL_Rect *srcrect, unsigned alpha)
789 int linecount = srcrect->h; \
791 int left = srcrect->x; \
792 int right = left + srcrect->w; \
839 int SDL_RLEBlit(SDL_Surface *src, SDL_Rect *srcrect,
864 int vskip = srcrect->y;
901 if ( srcrect->x || srcrect->w != src->w ) {
902 RLEClipBlit(w, srcbuf, dst, dstbuf, srcrect, alpha);
908 int linecount = srcrect->h;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
BitmapImageSingleFrameSkia.h 76 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator);
  /external/skia/include/pdf/
SkPDFDevice.h 81 virtual bool readPixels(const SkIRect& srcRect, SkBitmap* bitmap) {
219 const SkIRect* srcRect,
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 234 Rect srcRect = mCrop.getCropRect();
237 int dx = (srcRect.width() - dstRect.width()) / 2;
238 int dy = (srcRect.height() - dstRect.height()) / 2;
240 // If the srcRect is too big, use the center part of it.
241 srcRect.inset(Math.max(0, dx), Math.max(0, dy));
247 canvas.drawBitmap(mBitmap, srcRect, dstRect, null);
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_ph_image.c 836 int ph_HWAccelBlit(SDL_Surface* src, SDL_Rect* srcrect, SDL_Surface* dst, SDL_Rect* dstrect)
849 srcarea.pos.x=srcrect->x;
850 srcarea.pos.y=srcrect->y;
851 srcarea.size.w=srcrect->w;
852 srcarea.size.h=srcrect->h;
  /external/skia/gpu/include/
GrContext.h 290 * coordinates. Each rect can optionally be transformed. The srcRect
292 * context's matrix and the srcRect is transformed by the paint's matrix.
297 * @param srcRect rect of paint coordinates to be mapped onto dstRect
300 * @param srcMatrix Optional matrix to transform srcRect Applied before
305 const GrRect& srcRect,
  /frameworks/base/media/java/android/media/videoeditor/
VideoEditor.java 235 final Rect srcRect;
240 srcRect = new Rect(0, 0, mOverlayBitmap.getWidth(),
271 srcRect = new Rect(0, 0, mOverlayBitmap.getWidth(), mOverlayBitmap.getHeight());
300 srcRect = new Rect(left, top, right, bottom);
311 overlayCanvas.drawBitmap(mOverlayBitmap, srcRect, destRect, sResizePaint);
  /external/qemu/distrib/sdl-1.2.12/src/video/directfb/
SDL_DirectFB_video.c 68 static int DirectFB_HWAccelBlit(SDL_Surface *src, SDL_Rect *srcrect,
871 static int DirectFB_HWAccelBlit(SDL_Surface *src, SDL_Rect *srcrect,
876 DFBRectangle sr = { srcrect->x, srcrect->y, srcrect->w, srcrect->h };
  /external/qemu/distrib/sdl-1.2.12/src/video/macdsp/
SDL_dspvideo.c 177 static int DSp_HWAccelBlit(SDL_Surface *src, SDL_Rect *srcrect,
    [all...]
  /external/skia/gpu/src/
GrContext.cpp     [all...]
  /external/skia/include/gpu/
SkGpuDevice.h 79 virtual bool readPixels(const SkIRect& srcRect, SkBitmap* bitmap);
  /external/webkit/Source/WebKit2/Shared/
ShareableBitmap.h 97 void paint(WebCore::GraphicsContext&, const WebCore::IntPoint& dstPoint, const WebCore::IntRect& srcRect);
  /external/qemu/distrib/sdl-1.2.12/src/video/dga/
SDL_dgavideo.c 860 static int HWAccelBlit(SDL_Surface *src, SDL_Rect *srcrect,
877 srcx += srcrect->x;
878 srcy += srcrect->y;
882 w = srcrect->w;
883 h = srcrect->h;
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_video.h 144 typedef int (*SDL_blit)(struct SDL_Surface *src, SDL_Rect *srcrect,
627 * the same size. If either 'srcrect' or 'dstrect' are NULL, the entire
629 * in 'srcrect' and 'dstrect' after all clipping is performed.
699 (SDL_Surface *src, SDL_Rect *srcrect,
705 (SDL_Surface *src, SDL_Rect *srcrect,
    [all...]
  /external/skia/src/core/
SkCanvas.cpp 563 bool SkCanvas::readPixels(const SkIRect& srcRect, SkBitmap* bitmap) {
568 return device->readPixels(srcRect, bitmap);
831 void SkCanvas::internalDrawBitmap(const SkBitmap& bitmap, const SkIRect* srcRect,
841 this->commonDrawBitmap(bitmap, srcRect, matrix, *paint);
    [all...]
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_video.h 144 typedef int (*SDL_blit)(struct SDL_Surface *src, SDL_Rect *srcrect,
627 * the same size. If either 'srcrect' or 'dstrect' are NULL, the entire
629 * in 'srcrect' and 'dstrect' after all clipping is performed.
699 (SDL_Surface *src, SDL_Rect *srcrect,
705 (SDL_Surface *src, SDL_Rect *srcrect,
    [all...]
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_video.h 144 typedef int (*SDL_blit)(struct SDL_Surface *src, SDL_Rect *srcrect,
627 * the same size. If either 'srcrect' or 'dstrect' are NULL, the entire
629 * in 'srcrect' and 'dstrect' after all clipping is performed.
699 (SDL_Surface *src, SDL_Rect *srcrect,
705 (SDL_Surface *src, SDL_Rect *srcrect,
    [all...]

Completed in 936 milliseconds

1 2 34 5