Lines Matching refs:SkSurface
28 backends is to use a `SkSurface`, which is an object that manages
36 #include "SkSurface.h"
40 SkAutoTUnref<SkSurface> rasterSurface(
41 SkSurface::NewRasterN32Premul(width, height));
63 SkAutoTUnref<SkSurface> surface(
64 SkSurface::NewRasterDirect(
85 #include "SkSurface.h"
92 SkAutoTUnref<SkSurface> gpuSurface(
93 SkSurface::NewRenderTarget(context, SkBudgeted::kNo, info));
95 SkDebugf("SkSurface::NewRenderTarget returned null\n");
112 The SkPDF backend uses `SkDocument` instead of `SkSurface`, since
134 The SkPicture backend uses SkPictureRecorder instead of SkSurface.