Home
last modified time | relevance | path

Searched refs:make_surface (Results 1 – 19 of 19) sorted by relevance

/third_party/skia/tests/
DSkbug6653.cpp26 static sk_sp<SkSurface> make_surface(GrRecordingContext* rContext) { in make_surface() function
48 auto s0 = make_surface(dContext); in test_bug_6653()
54 auto s1 = make_surface(dContext); in test_bug_6653()
61 auto s2 = make_surface(dContext); in test_bug_6653()
66 auto s3 = make_surface(dContext); in test_bug_6653()
71 auto s4 = make_surface(dContext); in test_bug_6653()
/third_party/flutter/skia/tests/
DSkbug6653.cpp27 static sk_sp<SkSurface> make_surface(GrContext* context) { in make_surface() function
47 auto s0 = make_surface(ctx); in test_bug_6653()
53 auto s1 = make_surface(ctx); in test_bug_6653()
60 auto s2 = make_surface(ctx); in test_bug_6653()
65 auto s3 = make_surface(ctx); in test_bug_6653()
71 auto s4 = make_surface(ctx); in test_bug_6653()
/third_party/flutter/skia/experimental/c-api-example/
Dskia-c-example.c17 static sk_surface_t* make_surface(int32_t w, int32_t h) { in make_surface() function
73 sk_surface_t* surface = make_surface(640, 480); in main()
Dc.md37 static sk_surface_t* make_surface(int32_t w, int32_t h) {
96 sk_surface_t* surface = make_surface(640, 480);
/third_party/skia/experimental/c-api-example/
Dskia-c-example.c17 static sk_surface_t* make_surface(int32_t w, int32_t h) { in make_surface() function
78 sk_surface_t* surface = make_surface(640, 480); in main()
Dc.md37 static sk_surface_t* make_surface(int32_t w, int32_t h) {
99 sk_surface_t* surface = make_surface(640, 480);
/third_party/skia/gm/
Dsurface.cpp47 static sk_sp<SkSurface> make_surface(GrRecordingContext* ctx, in make_surface() function
108 auto surface(make_surface(ctx, info, rec.fGeo)); in onDraw()
183 static sk_sp<SkSurface> make_surface(const SkImageInfo& ii, SkCanvas* canvas, SurfaceType type) { in make_surface() function
207 return make_surface(ii, canvas, SurfaceType::kManaged); \
219 auto make = [canvas](const SkImageInfo& ii) { return make_surface(ii, canvas, type); }; \
Dninepatchstretch.cpp22 static sk_sp<SkSurface> make_surface(SkCanvas* root, int N) { in make_surface() function
32 auto surface(make_surface(root, kSize)); in make_image()
Dlattice.cpp26 static sk_sp<SkSurface> make_surface(SkCanvas* root, int N, int padLeft, int padTop, in make_surface() function
38 auto surface(make_surface(root, kSize, padLeft, padTop, padRight, padBottom)); in make_image()
243 auto surface(make_surface(root, kSize, padLeft, padTop, padRight, padBottom)); in makeImage()
/third_party/flutter/skia/gm/
Dninepatchstretch.cpp23 static sk_sp<SkSurface> make_surface(SkCanvas* root, int N) { in make_surface() function
33 auto surface(make_surface(root, kSize)); in make_image()
Dsurface.cpp46 static sk_sp<SkSurface> make_surface(GrContext* ctx, const SkImageInfo& info, SkPixelGeometry geo) { in make_surface() function
105 auto surface(make_surface(ctx, info, rec.fGeo)); in onDraw()
Dlattice.cpp25 static sk_sp<SkSurface> make_surface(SkCanvas* root, int N, int padLeft, int padTop, in make_surface() function
37 auto surface(make_surface(root, kSize, padLeft, padTop, padRight, padBottom)); in make_image()
234 auto surface(make_surface(root, kSize, padLeft, padTop, padRight, padBottom)); in makeImage()
/third_party/skia/fuzz/
DFuzzCreateDDL.cpp173 static sk_sp<SkSurface> make_surface(Fuzz* fuzz, GrDirectContext* dContext, const SkImageInfo& ii, in make_surface() function
197 auto surface = make_surface(fuzz, dContext, ii, origin); in create_surface_and_characterization()
/third_party/flutter/skia/samplecode/
DSampleFilterQuality.cpp21 static sk_sp<SkSurface> make_surface(SkCanvas* canvas, const SkImageInfo& info) { in make_surface() function
216 surface = make_surface(canvas, info); in drawHere()
/third_party/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_mipmap_tree.c349 make_surface(struct brw_context *brw, GLenum target, mesa_format format, in make_surface() function
499 make_surface(brw, target, mt_fmt, first_level, last_level, in miptree_create()
509 mt->shadow_mt = make_surface(brw, target, decomp_format, first_level, in miptree_create()
523 make_surface(brw, target, MESA_FORMAT_S_UINT8, first_level, last_level, in miptree_create()
597 mt = make_surface(brw, target, mt_fmt, in brw_miptree_create_for_bo()
611 mt = make_surface(brw, target, MESA_FORMAT_S_UINT8, in brw_miptree_create_for_bo()
636 mt = make_surface(brw, target, format, in brw_miptree_create_for_bo()
2305 mt->shadow_mt = make_surface( in brw_update_r8stencil()
2614 map->linear_mt = make_surface(brw, GL_TEXTURE_2D, mt->format, in brw_miptree_map_blit()
/third_party/flutter/skia/tools/viewer/
DViewer.cpp1253 auto make_surface = [=](int w, int h) { in drawSlide() local
1273 offscreenSurface = make_surface(fWindow->width(), fWindow->height()); in drawSlide()
1285 sk_sp<SkSurface> tileSurface = make_surface(tileW, tileH); in drawSlide()
/third_party/skia/tools/viewer/
DViewer.cpp1505 auto make_surface = [=](int w, int h) { in drawSlide() local
1527 offscreenSurface = make_surface(fWindow->width(), fWindow->height()); in drawSlide()
/third_party/mesa3d/docs/relnotes/
D20.1.0.rst1031 - anv: Rename param make_surface::dev to device
1034 - anv: Respect ISL_SURF_USAGE_DISABLE_AUX_BIT in make_surface()
D19.0.0.rst2344 - anv: refactor make_surface to use data from anv_image