/external/skia/tools/VisualBench/ |
WrappedBenchmark.h | 23 explicit WrappedBenchmark(const SkSurfaceProps& surfaceProps, Benchmark* bench) 24 : fSurfaceProps(surfaceProps) 27 const SkSurfaceProps& surfaceProps() const { return fSurfaceProps; } 78 explicit CpuWrappedBenchmark(const SkSurfaceProps& surfaceProps, Benchmark* bench) 79 : INHERITED(surfaceProps, bench) {} 83 fOffScreen.reset(SkSurface::NewRaster(canvas->imageInfo(), &this->surfaceProps())); 100 explicit GpuWrappedBenchmark(const SkSurfaceProps& surfaceProps, Benchmark* bench, 102 : INHERITED(surfaceProps, bench) 111 &this->surfaceProps()));
|
VisualBenchmarkStream.cpp | 76 VisualBenchmarkStream::VisualBenchmarkStream(const SkSurfaceProps& surfaceProps, bool justSKP) 77 : fSurfaceProps(surfaceProps)
|
/external/skia/src/gpu/ |
GrPathRenderingDrawContext.h | 30 const SkSurfaceProps* surfaceProps, GrAuditTrail* at, 32 : INHERITED(ctx, mgr, rt, surfaceProps, at, so) {}
|
GrPathRenderingDrawContext.cpp | 33 skPaint, viewMatrix, this->surfaceProps(), 53 grPaint, skPaint, viewMatrix, this->surfaceProps(), 72 skPaint, viewMatrix, this->surfaceProps(), blob, x,
|
GrDrawingManager.cpp | 163 const SkSurfaceProps* surfaceProps) { 170 if (surfaceProps) { 171 useDIF = surfaceProps->isUseDeviceIndependentFonts(); 178 return new GrPathRenderingDrawContext(fContext, this, rt, surfaceProps, 183 return new GrDrawContext(fContext, this, rt, surfaceProps, fContext->getAuditTrail(),
|
GrContext.cpp | 580 GrDrawContext* GrContext::drawContext(GrRenderTarget* rt, const SkSurfaceProps* surfaceProps) { 582 return fDrawingManager->drawContext(rt, surfaceProps);
|
/external/skia/gm/ |
cgm.c | 56 sk_surfaceprops_t surfaceProps = { UNKNOWN_SK_PIXELGEOMETRY }; 57 sk_surface_t* surf = sk_surface_new_raster(&info, &surfaceProps);
|
/external/skia/src/core/ |
SkGlyphCache.h | 286 const SkSurfaceProps* surfaceProps, 288 : INHERITED(paint.detachCache(surfaceProps, SkPaint::FakeGamma::On, matrix)) 291 const SkSurfaceProps* surfaceProps, 294 : INHERITED(paint.detachCache(surfaceProps, fakeGamma, matrix)) 303 const SkSurfaceProps* surfaceProps, 305 : SkAutoGlyphCache(paint, surfaceProps, SkPaint::FakeGamma::Off, matrix)
|
SkBitmapDevice.cpp | 80 SkBitmapDevice::SkBitmapDevice(const SkBitmap& bitmap, const SkSurfaceProps& surfaceProps) 81 : INHERITED(surfaceProps) 87 const SkSurfaceProps& surfaceProps) { 115 return new SkBitmapDevice(bitmap, surfaceProps); 135 const SkSurfaceProps surfaceProps(this->surfaceProps().flags(), cinfo.fPixelGeometry); 136 return SkBitmapDevice::Create(cinfo.fInfo, surfaceProps);
|
SkPaint.cpp | [all...] |
SkScalerContext.h | 240 static void MakeRec(const SkPaint&, const SkSurfaceProps* surfaceProps,
|
SkDevice.cpp | 23 SkBaseDevice::SkBaseDevice(const SkSurfaceProps& surfaceProps) 24 : fSurfaceProps(surfaceProps)
|
SkImageFilter.cpp | 674 const SkSurfaceProps surfaceProps(fDevice->fSurfaceProps.flags(), 676 dev = SkBitmapDevice::Create(cinfo.fInfo, surfaceProps);
|
/external/skia/tests/ |
CTest.cpp | 62 sk_surfaceprops_t surfaceProps = { UNKNOWN_SK_PIXELGEOMETRY }; 65 &surfaceProps);
|
/external/skia/include/gpu/ |
GrDrawContext.h | 270 const SkSurfaceProps* surfaceProps, GrAuditTrail*, GrSingleOwner*); 274 const SkSurfaceProps& surfaceProps() const { return fSurfaceProps; }
|
GrContext.h | 180 * @param surfaceProps the surface properties (mainly defines text drawing) 184 GrDrawContext* drawContext(GrRenderTarget* rt, const SkSurfaceProps* surfaceProps = NULL);
|
/external/skia/platform_tools/android/apps/canvasproof/src/main/jni/ |
org_skia_canvasproof_GaneshPictureRenderer.cpp | 37 SkSurfaceProps surfaceProps(SkSurfaceProps::kUseDeviceIndependentFonts_Flag, 42 grContext, desc, &surfaceProps));
|
/frameworks/base/libs/hwui/tests/common/ |
TestUtils.cpp | 68 SkSurfaceProps surfaceProps(0, kUnknown_SkPixelGeometry); 69 SkAutoGlyphCacheNoGamma autoCache(paint, &surfaceProps, &SkMatrix::I());
|
/external/skia/src/gpu/text/ |
GrTextUtils.h | 88 static uint32_t FilterTextFlags(const SkSurfaceProps& surfaceProps, const SkPaint& paint);
|
GrTextUtils.cpp | 551 uint32_t GrTextUtils::FilterTextFlags(const SkSurfaceProps& surfaceProps, const SkPaint& paint) { 558 if (kUnknown_SkPixelGeometry == surfaceProps.pixelGeometry() || ShouldDisableLCD(paint)) {
|
/external/skia/include/core/ |
SkPaint.h | [all...] |
SkBitmapDevice.h | 57 SkBitmapDevice(const SkBitmap& bitmap, const SkSurfaceProps& surfaceProps);
|
SkDevice.h | 318 const SkSurfaceProps& surfaceProps() const {
|
/frameworks/base/libs/hwui/font/ |
Font.cpp | 282 SkSurfaceProps surfaceProps(0, kUnknown_SkPixelGeometry); 283 SkAutoGlyphCacheNoGamma autoCache(*paint, &surfaceProps, &mDescription.mLookupTransform); 468 SkSurfaceProps surfaceProps(0, kUnknown_SkPixelGeometry); 469 SkAutoGlyphCacheNoGamma autoCache(*paint, &surfaceProps, &mDescription.mLookupTransform);
|
/external/skia/src/image/ |
SkSurface_Gpu.cpp | 21 : INHERITED(device->width(), device->height(), &device->surfaceProps())
|