HomeSort by relevance Sort by last modified time
    Searched full:dstrect (Results 26 - 50 of 60) sorted by null

12 3

  /external/webkit/WebCore/platform/graphics/qt/
StillImageQt.h 49 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator);
GraphicsContextQt.cpp     [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit.c 44 SDL_Surface *dst, SDL_Rect *dstrect)
85 (Uint16)dstrect->y*dst->pitch +
86 (Uint16)dstrect->x*dst->format->BytesPerPixel;
87 info.d_width = dstrect->w;
88 info.d_height = dstrect->h;
  /external/qemu/distrib/sdl-1.2.12/src/video/directfb/
SDL_DirectFB_video.c 63 static int DirectFB_FillHWRect(_THIS, SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
69 SDL_Surface *dst, SDL_Rect *dstrect);
872 SDL_Surface *dst, SDL_Rect *dstrect)
877 DFBRectangle dr = { dstrect->x, dstrect->y, dstrect->w, dstrect->h };
903 static int DirectFB_FillHWRect(_THIS, SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color)
913 surface->FillRectangle (surface, dstrect->x, dstrect->y, dstrect->w, dstrect->h)
    [all...]
  /external/webkit/WebCore/html/canvas/
CanvasRenderingContext2D.h 159 void drawImage(HTMLImageElement*, const FloatRect& srcRect, const FloatRect& dstRect, ExceptionCode&);
162 void drawImage(HTMLCanvasElement*, const FloatRect& srcRect, const FloatRect& dstRect, ExceptionCode&);
166 void drawImage(HTMLVideoElement*, const FloatRect& srcRect, const FloatRect& dstRect, ExceptionCode&);
CanvasRenderingContext2D.cpp 969 void CanvasRenderingContext2D::drawImage(HTMLImageElement* image, const FloatRect& srcRect, const FloatRect& dstRect,
982 if (!dstRect.width() || !dstRect.height())
1002 FloatRect destRect = c->roundToDevicePixels(dstRect);
1022 const FloatRect& dstRect, ExceptionCode& ec)
1034 if (!dstRect.width() || !dstRect.height())
1044 FloatRect destRect = c->roundToDevicePixels(dstRect);
1076 void CanvasRenderingContext2D::drawImage(HTMLVideoElement* video, const FloatRect& srcRect, const FloatRect& dstRect,
1088 if (!dstRect.width() || !dstRect.height()
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
GraphicsContextCGWin.cpp 80 void GraphicsContext::releaseWindowsContext(HDC hdc, const IntRect& dstRect, bool supportAlphaBlend, bool mayCreateBitmap)
83 if (dstRect.isEmpty())
101 CGContextDrawImage(m_data->m_cgContext.get(), dstRect, image);
  /external/webkit/WebCore/platform/graphics/wince/
ImageBufferWince.cpp 44 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator);
51 void BufferedImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp)
53 IntRect intDstRect = enclosingIntRect(dstRect);
GraphicsContextWince.cpp 607 HDC GraphicsContext::getWindowsContext(const IntRect& dstRect, bool supportAlphaBlend, bool mayCreateBitmap)
614 void GraphicsContext::releaseWindowsContext(HDC hdc, const IntRect& dstRect, bool supportAlphaBlend, bool mayCreateBitmap)
    [all...]
  /external/webkit/WebCore/platform/graphics/
GeneratedImage.h 60 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator);
BitmapImage.h 172 virtual void drawFrameMatchingSourceSize(GraphicsContext*, const FloatRect& dstRect, const IntSize& srcSize, ColorSpace styleColorSpace, CompositeOperator);
174 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator);
  /external/webkit/WebCore/platform/graphics/cg/
PDFDocumentImage.h 61 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator);
  /external/webkit/WebCore/platform/graphics/skia/
BitmapImageSingleFrameSkia.h 75 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator);
ImageSkia.cpp 408 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect,
423 FloatRect normDstRect = normalizeRect(dstRect);
439 const FloatRect& dstRect,
444 FloatRect normDstRect = normalizeRect(dstRect);
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 235 Rect dstRect = new Rect(0, 0, mOutputX, mOutputY);
237 int dx = (srcRect.width() - dstRect.width()) / 2;
238 int dy = (srcRect.height() - dstRect.height()) / 2;
243 // If the dstRect is too big, use the center part of it.
244 dstRect.inset(Math.max(0, -dx), Math.max(0, -dy));
247 canvas.drawBitmap(mBitmap, srcRect, dstRect, null);
266 Rect dstRect = new Rect(0, 0, width, height);
267 canvas.drawBitmap(mBitmap, r, dstRect, null);
  /packages/apps/Gallery3D/src/com/cooliris/media/
CropImage.java 370 Rect dstRect = new Rect(0, 0, width, height);
371 canvas.drawBitmap(mBitmap, r, dstRect, null);
410 Rect dstRect = new Rect(0, 0, mOutputX, mOutputY);
412 int dx = (srcRect.width() - dstRect.width()) / 2;
413 int dy = (srcRect.height() - dstRect.height()) / 2;
418 // If the dstRect is too big, use the center part of it.
419 dstRect.inset(Math.max(0, -dx), Math.max(0, -dy));
422 canvas.drawBitmap(mBitmap, srcRect, dstRect, null);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_video.h 145 struct SDL_Surface *dst, SDL_Rect *dstrect);
627 * the same size. If either 'srcrect' or 'dstrect' are NULL, the entire
629 * in 'srcrect' and 'dstrect' after all clipping is performed.
680 while ( SDL_BlitSurface(image, imgrect, screen, dstrect) == -2 ) {
700 SDL_Surface *dst, SDL_Rect *dstrect);
706 SDL_Surface *dst, SDL_Rect *dstrect);
712 * If 'dstrect' is NULL, the whole surface will be filled with 'color'
718 (SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
770 extern DECLSPEC int SDLCALL SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect);
    [all...]
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_video.h 145 struct SDL_Surface *dst, SDL_Rect *dstrect);
627 * the same size. If either 'srcrect' or 'dstrect' are NULL, the entire
629 * in 'srcrect' and 'dstrect' after all clipping is performed.
680 while ( SDL_BlitSurface(image, imgrect, screen, dstrect) == -2 ) {
700 SDL_Surface *dst, SDL_Rect *dstrect);
706 SDL_Surface *dst, SDL_Rect *dstrect);
712 * If 'dstrect' is NULL, the whole surface will be filled with 'color'
718 (SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
770 extern DECLSPEC int SDLCALL SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect);
    [all...]
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_video.h 145 struct SDL_Surface *dst, SDL_Rect *dstrect);
627 * the same size. If either 'srcrect' or 'dstrect' are NULL, the entire
629 * in 'srcrect' and 'dstrect' after all clipping is performed.
680 while ( SDL_BlitSurface(image, imgrect, screen, dstrect) == -2 ) {
700 SDL_Surface *dst, SDL_Rect *dstrect);
706 SDL_Surface *dst, SDL_Rect *dstrect);
712 * If 'dstrect' is NULL, the whole surface will be filled with 'color'
718 (SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
770 extern DECLSPEC int SDLCALL SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect);
    [all...]
  /prebuilt/windows/sdl/host/include/SDL/
SDL_video.h 95 struct SDL_Surface *dst, SDL_Rect *dstrect);
629 * the same size. If either 'srcrect' or 'dstrect' are NULL, the entire
631 * in 'srcrect' and 'dstrect' after all clipping is performed.
682 while ( SDL_BlitSurface(image, imgrect, screen, dstrect) == -2 ) {
702 SDL_Surface *dst, SDL_Rect *dstrect);
708 SDL_Surface *dst, SDL_Rect *dstrect);
714 * If 'dstrect' is NULL, the whole surface will be filled with 'color'
720 (SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
772 extern DECLSPEC int SDLCALL SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect);
    [all...]
  /prebuilt/windows/sdl/include/SDL/
SDL_video.h 145 struct SDL_Surface *dst, SDL_Rect *dstrect);
627 * the same size. If either 'srcrect' or 'dstrect' are NULL, the entire
629 * in 'srcrect' and 'dstrect' after all clipping is performed.
680 while ( SDL_BlitSurface(image, imgrect, screen, dstrect) == -2 ) {
700 SDL_Surface *dst, SDL_Rect *dstrect);
706 SDL_Surface *dst, SDL_Rect *dstrect);
712 * If 'dstrect' is NULL, the whole surface will be filled with 'color'
718 (SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
770 extern DECLSPEC int SDLCALL SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect);
    [all...]
  /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)
854 dstarea.pos.x=dstrect->x;
855 dstarea.pos.y=dstrect->y;
856 dstarea.size.w=dstrect->w;
857 dstarea.size.h=dstrect->h;
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5video.c 418 static int DX5_FillHWRect(_THIS, SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/macdsp/
SDL_dspvideo.c 178 SDL_Surface *dst, SDL_Rect *dstrect);
    [all...]
  /external/webkit/WebCore/platform/graphics/android/
ImageAndroid.cpp 188 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect,
211 SkRect dstR(dstRect);

Completed in 504 milliseconds

12 3