HomeSort by relevance Sort by last modified time
    Searched refs:DrawImage (Results 1 - 25 of 30) sorted by null

1 2

  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
HiiImage.h 346 EFI_HII_DRAW_IMAGE DrawImage;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/HiiImage/
HiiImage.h 250 EFI_HII_DRAW_IMAGE DrawImage;
  /external/skia/tests/
RecorderTest.cpp 85 // DrawImage is supposed to take a reference
86 recorder.drawImage(image, 0, 0);
92 REPORTER_ASSERT(reporter, 1 == tally.count<SkRecords::DrawImage>());
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d2d1_1.h 464 STDMETHOD(DrawImage)(ID2D1Image *image, CONST D2D1_POINT_2F *targetOffset, CONST D2D1_RECT_F *imageRectangle,
714 STDMETHOD_(void, DrawImage)(ID2D1Image *image, CONST D2D1_POINT_2F *targetOffset = NULL,
780 void DrawImage(ID2D1Effect *effect, CONST D2D1_POINT_2F *targetOffset = NULL, CONST D2D1_RECT_F *imageRectangle = NULL,
785 DrawImage(output, targetOffset, imageRectangle, interpolationMode, compositeMode);
789 void DrawImage(ID2D1Image *image, D2D1_INTERPOLATION_MODE interpolationMode,
791 DrawImage(image, NULL, NULL, interpolationMode, compositeMode);
794 void DrawImage(ID2D1Effect *effect, D2D1_INTERPOLATION_MODE interpolationMode,
796 DrawImage(effect, NULL, NULL, interpolationMode, compositeMode);
799 void DrawImage(ID2D1Image *image, D2D1_POINT_2F targetOffset,
    [all...]
  /external/ImageMagick/www/api/
draw.php 55 <p class="text-center"><a href="draw.php#AcquireDrawInfo">AcquireDrawInfo</a> &bull; <a href="draw.php#CloneDrawInfo">CloneDrawInfo</a> &bull; <a href="draw.php#DestroyDrawInfo">DestroyDrawInfo</a> &bull; <a href="draw.php#DrawAffineImage">DrawAffineImage</a> &bull; <a href="draw.php#DrawClipPath">DrawClipPath</a> &bull; <a href="draw.php#DrawImage">DrawImage</a> &bull; <a href="draw.php#DrawGradientImage">DrawGradientImage</a> &bull; <a href="draw.php#DrawPatternPath">DrawPatternPath</a> &bull; <a href="draw.php#DrawPrimitive">DrawPrimitive</a> &bull; <a href="draw.php#GetAffineMatrix">GetAffineMatrix</a></p>
186 <h2><a href="http://nextgen.imagemagick.org/api/MagickCore/draw_8c.html" id="DrawImage">DrawImage</a></h2>
188 <p>DrawImage() draws a graphic primitive on your image. The primitive may be represented as a string or filename. Precede the filename with an "at" sign (@) and the contents of the file are drawn on the image. You can affect how text is drawn by setting one or more members of the draw info structure.</p>
190 <p>The format of the DrawImage method is:</p>
193 MagickBooleanType DrawImage(Image *image,const DrawInfo *draw_info,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusgraphics.h 319 Status DrawImage(Image *image, REAL x, REAL y)
326 Status DrawImage(Image *image, INT x, INT y)
333 Status DrawImage(Image *image, const PointF& point)
340 Status DrawImage(Image *image, const Point& point)
347 Status DrawImage(Image *image, REAL x, REAL y, REAL width, REAL height)
354 Status DrawImage(Image *image, INT x, INT y, INT width, INT height)
361 Status DrawImage(Image *image, const RectF& rect)
368 Status DrawImage(Image *image, const Rect& rect)
375 Status DrawImage(Image *image, const PointF *destPoints, INT count)
382 Status DrawImage(Image *image, const Point *destPoints, INT count
    [all...]
  /external/ImageMagick/MagickCore/
draw.h 378 DrawImage(Image *,const DrawInfo *,ExceptionInfo *),
annotate.c 517 (void) DrawImage(image,undercolor_info,exception);
529 (void) DrawImage(image,annotate_info,exception);
537 (void) DrawImage(image,annotate_info,exception);
550 (void) DrawImage(image,annotate_info,exception);
    [all...]
methods.h 300 #define DrawImage PrependMagickMethod(DrawImage)
    [all...]
draw.c     [all...]
feature.c     [all...]
fx.c     [all...]
  /external/ImageMagick/coders/
mvg.c 221 (void) DrawImage(image,draw_info,exception);
ttf.c 289 (void) DrawImage(image,draw_info,exception);
emf.c 780 graphics->DrawImage(source,0,0,(INT) image->columns,(INT) image->rows);
  /external/pdfium/xfa/fde/
fde_gedevice.h 37 bool DrawImage(CFX_DIBSource* pDib,
fde_gedevice.cpp 85 bool CFDE_RenderDevice::DrawImage(CFX_DIBSource* pDib,
  /external/skia/include/private/
SkRecords.h 61 M(DrawImage) \
240 RECORD(DrawImage, kDraw_Tag|kHasImage_Tag|kHasPaint_Tag,
  /external/skia/src/core/
SkLiteDL.cpp 55 M(DrawImage) M(DrawImageNine) M(DrawImageRect) M(DrawImageLattice) \
293 struct DrawImage final : Op {
294 static const auto kType = Type::DrawImage;
295 DrawImage(sk_sp<const SkImage>&& image, SkScalar x, SkScalar y, const SkPaint* paint)
302 void draw(SkCanvas* c, const SkMatrix&) { c->drawImage(image.get(), x,y, &paint); }
612 void SkLiteDL::drawImage(sk_sp<const SkImage> image, SkScalar x, SkScalar y, const SkPaint* paint) {
613 this->push<DrawImage>(0, std::move(image), x,y, paint);
SkRecordDraw.cpp 98 DRAW(DrawImage, drawImage(r.image.get(), r.left, r.top, r.paint));
421 Bounds bounds(const DrawImage& op) const {
SkRecorder.cpp 225 APPEND(DrawImage, this->copy(paint), sk_ref_sp(image), left, top);
  /external/ImageMagick/Magick++/lib/Magick++/
Include.h     [all...]
  /external/ImageMagick/MagickWand/
drawing-wand.c     [all...]
operation.c     [all...]
  /external/skia/tools/debugger/
SkDrawCommand.cpp 219 case kDrawImage_OpType: return "DrawImage";
280 INSTALL_FACTORY(DrawImage);
    [all...]

Completed in 1071 milliseconds

1 2