/external/skia/src/core/ |
SkDrawProcs.h | 4 #include "SkDraw.h" 9 const SkDraw* fDraw; 20 Proc init(const SkDraw* draw, SkBlitter* blitter, SkGlyphCache* cache);
|
SkDevice.cpp | 2 #include "SkDraw.h" 147 void SkDevice::drawPaint(const SkDraw& draw, const SkPaint& paint) { 151 void SkDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode, size_t count, 156 void SkDevice::drawRect(const SkDraw& draw, const SkRect& r, 161 void SkDevice::drawPath(const SkDraw& draw, const SkPath& path, 167 void SkDevice::drawBitmap(const SkDraw& draw, const SkBitmap& bitmap, 182 void SkDevice::drawSprite(const SkDraw& draw, const SkBitmap& bitmap, 187 void SkDevice::drawText(const SkDraw& draw, const void* text, size_t len, 192 void SkDevice::drawPosText(const SkDraw& draw, const void* text, size_t len, 198 void SkDevice::drawTextOnPath(const SkDraw& draw, const void* text [all...] |
SkMaskFilter.cpp | 22 #include "SkDraw.h" 35 if (!SkDraw::DrawToMask(devPath, &clip.getBounds(), this, &matrix, &srcM,
|
SkRasterizer.cpp | 19 #include "SkDraw.h" 57 return SkDraw::DrawToMask(devPath, clipBounds, NULL, NULL, mask, mode);
|
SkDraw.cpp | 1 /* libs/graphics/sgl/SkDraw.cpp 18 #include "SkDraw.h" 122 SkDraw::SkDraw() { 126 SkDraw::SkDraw(const SkDraw& src) { 258 void SkDraw::drawPaint(const SkPaint& paint) const { 522 void SkDraw::drawPoints(SkCanvas::PointMode mode, size_t count, 550 SkDraw noBounder(*this) [all...] |
core_files.mk | 38 SkDraw.cpp \
|
SkScalerContext.cpp | 21 #include "SkDraw.h" 427 SkDraw draw;
|
SkCanvas.cpp | 20 #include "SkDraw.h" 221 class SkDrawIter : public SkDraw { 278 typedef SkDraw INHERITED; [all...] |
/external/skia/include/core/ |
SkDevice.h | 27 class SkDraw; 188 virtual void drawPaint(const SkDraw&, const SkPaint& paint); 189 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count, 191 virtual void drawRect(const SkDraw&, const SkRect& r, 204 virtual void drawPath(const SkDraw&, const SkPath& path, 208 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap, 211 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap, 213 virtual void drawText(const SkDraw&, const void* text, size_t len, 215 virtual void drawPosText(const SkDraw&, const void* text, size_t len, 218 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len [all...] |
SkDraw.h | 35 class SkDraw { 37 SkDraw(); 38 SkDraw(const SkDraw& src);
|
SkBounder.h | 90 friend class SkDraw;
|
SkCanvas.h | 34 class SkDraw; [all...] |
SkPaint.h | [all...] |
/external/skia/include/gpu/ |
SkGpuDevice.h | 85 virtual void drawPaint(const SkDraw&, const SkPaint& paint); 86 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count, 88 virtual void drawRect(const SkDraw&, const SkRect& r, 90 virtual void drawPath(const SkDraw&, const SkPath& path, 93 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap, 96 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap, 98 virtual void drawText(const SkDraw&, const void* text, size_t len, 100 virtual void drawPosText(const SkDraw&, const void* text, size_t len, 103 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len, 106 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount [all...] |
/external/skia/include/pdf/ |
SkPDFDevice.h | 90 virtual void drawPaint(const SkDraw&, const SkPaint& paint); 91 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, 94 virtual void drawRect(const SkDraw&, const SkRect& r, const SkPaint& paint); 95 virtual void drawPath(const SkDraw&, const SkPath& origpath, 98 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap, 101 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap, int x, int y, 103 virtual void drawText(const SkDraw&, const void* text, size_t len, 105 virtual void drawPosText(const SkDraw&, const void* text, size_t len, 108 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len, 111 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode [all...] |
/external/skia/src/xml/ |
SkJSDisplayable.cpp | 134 JS_INIT(SkDraw, Bitmap) 137 JS_INIT(SkDraw, BitmapShader) 138 JS_INIT(SkDraw, Blur) 139 JS_INIT(SkDraw, Clip) 140 JS_INIT(SkDraw, Color) 147 JS_INIT(SkDraw, Emboss) 149 // JS_INIT(SkDraw, Font) 157 JS_INIT(SkDraw, Matrix) 161 JS_INIT(SkDraw, Path) 162 JS_INIT(SkDraw, Paint [all...] |
/external/skia/src/gpu/ |
SkGpuDevice.cpp | 290 void SkGpuDevice::prepareRenderTarget(const SkDraw& draw) { 613 void SkGpuDevice::drawPaint(const SkDraw& draw, const SkPaint& paint) { 636 void SkGpuDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode, 645 // we only handle hairlines here, else we let the SkDraw call our drawPath() 679 void SkGpuDevice::drawRect(const SkDraw& draw, const SkRect& rect, 729 if (!SkDraw::DrawToMask(path, &clip.getBounds(), filter, &matrix, &srcM, 797 void SkGpuDevice::drawPath(const SkDraw& draw, const SkPath& origSrcPath, 812 // BEGIN lift from SkDraw::drawPath() 826 // of applying it here? See SkDraw.cpp 833 // This "if" is not part of the SkDraw::drawPath() lift [all...] |
/external/skia/src/effects/ |
SkLayerRasterizer.cpp | 20 #include "SkDraw.h" 83 if (!SkDraw::DrawToMask(devPath, clipBounds, paint.getMaskFilter(), 119 SkDraw draw;
|
/external/skia/src/pdf/ |
SkPDFDevice.cpp | 21 #include "SkDraw.h" 72 // Stolen from measure_text in SkDraw.cpp and then tweaked. 436 ScopedContentEntry(SkPDFDevice* device, const SkDraw& draw, 581 void SkPDFDevice::drawPaint(const SkDraw& d, const SkPaint& paint) { 607 void SkPDFDevice::drawPoints(const SkDraw& d, SkCanvas::PointMode mode, 614 // SkDraw::drawPoints converts to multiple calls to fDevice->drawPath. 621 SkDraw pointDraw(d); 690 void SkPDFDevice::drawRect(const SkDraw& d, const SkRect& r, 711 void SkPDFDevice::drawPath(const SkDraw& d, const SkPath& origPath, 763 void SkPDFDevice::drawBitmap(const SkDraw& d, const SkBitmap& bitmap [all...] |
/external/skia/src/animator/ |
SkMemberInfo.h | 181 typedef SkDraw##_type BASE_CLASS 248 typedef SkDraw##_type BASE_CLASS
|
SkDisplayType.cpp | 69 case SkType_##_class: result = new SkDraw##_class(); break 230 info = SkDraw##_class::fInfo; infoCount = SkDraw##_class::fInfoCount; break
|
/external/skia/ |
Android.mk | 129 src/core/SkDraw.cpp \
|