Path.cpp 308 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2024, Andreas Kling <andreas@ladybird.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibGfx/Path.h>
  7. #include <LibGfx/PathSkia.h>
  8. namespace Gfx {
  9. NonnullOwnPtr<Gfx::PathImpl> PathImpl::create()
  10. {
  11. return PathImplSkia::create();
  12. }
  13. PathImpl::~PathImpl() = default;
  14. }