Lines Matching refs:SkSurface_Base
59 SkSurface_Base::SkSurface_Base(int width, int height, const SkSurfaceProps* props) in SkSurface_Base() function in SkSurface_Base
63 SkSurface_Base::SkSurface_Base(const SkImageInfo& info, const SkSurfaceProps* props) in SkSurface_Base() function in SkSurface_Base
67 SkSurface_Base::~SkSurface_Base() { in ~SkSurface_Base()
74 GrBackendTexture SkSurface_Base::onGetBackendTexture(BackendHandleAccess) { in onGetBackendTexture()
78 GrBackendRenderTarget SkSurface_Base::onGetBackendRenderTarget(BackendHandleAccess) { in onGetBackendRenderTarget()
82 void SkSurface_Base::onDraw(SkCanvas* canvas, SkScalar x, SkScalar y, const SkPaint* paint) { in onDraw()
89 bool SkSurface_Base::outstandingImageSnapshot() const { in outstandingImageSnapshot()
93 void SkSurface_Base::aboutToDraw(ContentChangeMode mode) { in aboutToDraw()
122 uint32_t SkSurface_Base::newGenerationID() { in newGenerationID()
128 static SkSurface_Base* asSB(SkSurface* surface) { in asSB()
129 return static_cast<SkSurface_Base*>(surface); in asSB()
286 class SkNullSurface : public SkSurface_Base {
288 SkNullSurface(int width, int height) : SkSurface_Base(width, height, nullptr) {} in SkNullSurface()