Lines Matching refs:std
153 std::unique_ptr<SwCanvas> canvas;
249 std::vector<vg_lite_uint32_t> src_buffer;
250 std::vector<vg_lite_uint32_t> dest_buffer;
302 static Result shape_append_path(std::unique_ptr<Shape> & shape, vg_lite_path_t * path, vg_lite_matr…
303 static Result shape_append_rect(std::unique_ptr<Shape> & shape, const vg_lite_buffer_t * target,
306 static Result picture_load(vg_lite_ctx * ctx, std::unique_ptr<Picture> & picture, const vg_lite_buf…
602 TVG_CHECK_RETURN_VG_ERROR(ctx->canvas->push(std::move(shape))); in vg_lite_clear()
623 TVG_CHECK_RETURN_VG_ERROR(ctx->canvas->push(std::move(picture))); in vg_lite_blit()
668 TVG_CHECK_RETURN_VG_ERROR(picture->composite(std::move(shape), CompositeMethod::ClipPath)); in vg_lite_blit_rect()
669 TVG_CHECK_RETURN_VG_ERROR(ctx->canvas->push(std::move(picture))); in vg_lite_blit_rect()
680 auto threads = std::thread::hardware_concurrency(); in vg_lite_init()
886 TVG_CHECK_RETURN_VG_ERROR(ctx->canvas->push(std::move(shape))); in vg_lite_draw()
1147 TVG_CHECK_RETURN_VG_ERROR(picture->composite(std::move(shape), CompositeMethod::ClipPath)); in vg_lite_draw_pattern()
1148 TVG_CHECK_RETURN_VG_ERROR(ctx->canvas->push(std::move(picture))); in vg_lite_draw_pattern()
1476 TVG_CHECK_RETURN_VG_ERROR(shape->fill(std::move(linearGrad))); in vg_lite_draw_linear_grad()
1477 TVG_CHECK_RETURN_VG_ERROR(ctx->canvas->push(std::move(shape))); in vg_lite_draw_linear_grad()
1951 TVG_CHECK_RETURN_VG_ERROR(shape->fill(std::move(linearGrad))); in vg_lite_draw_grad()
1952 TVG_CHECK_RETURN_VG_ERROR(ctx->canvas->push(std::move(shape))); in vg_lite_draw_grad()
1993 TVG_CHECK_RETURN_VG_ERROR(shape->fill(std::move(radialGrad))); in vg_lite_draw_radial_grad()
1994 TVG_CHECK_RETURN_VG_ERROR(ctx->canvas->push(std::move(shape))); in vg_lite_draw_radial_grad()
2343 static Result shape_set_stroke(std::unique_ptr<Shape> & shape, const vg_lite_path_t * path) in shape_set_stroke()
2375 static Result shape_append_path(std::unique_ptr<Shape> & shape, vg_lite_path_t * path, vg_lite_matr… in shape_append_path()
2461 TVG_CHECK_RETURN_RESULT(shape->composite(std::move(cilp), CompositeMethod::ClipPath)); in shape_append_path()
2466 static Result shape_append_rect(std::unique_ptr<Shape> & shape, const vg_lite_buffer_t * target, in shape_append_rect()
2595 static Result picture_load(vg_lite_ctx * ctx, std::unique_ptr<Picture> & picture, const vg_lite_buf… in picture_load()