Home | History | Annotate | Download | only in wasm-skp-debugger

Lines Matching refs:SkSurface

10 #include "SkSurface.h"
62 void drawTo(SkSurface* surface, int32_t index) {
95 size_t rowBytes)->sk_sp<SkSurface> {
98 return SkSurface::MakeRasterDirect(imageInfo, pixels, rowBytes, nullptr);
100 class_<SkSurface>("SkSurface")
101 .smart_ptr<sk_sp<SkSurface>>("sk_sp<SkSurface>")
102 .function("width", &SkSurface::width)
103 .function("height", &SkSurface::height)
104 .function("_flush", select_overload<void()>(&SkSurface::flush))
105 .function("getCanvas", &SkSurface::getCanvas, allow_raw_pointers());