• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright 2021 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "experimental/graphite/src/mtl/MtlTrampoline.h"
9
10#include "experimental/graphite/src/mtl/MtlGpu.h"
11
12namespace skgpu::mtl {
13sk_sp<skgpu::Gpu> Trampoline::MakeGpu(const BackendContext& backendContext) {
14    return Gpu::Make(backendContext);
15}
16
17}  // namespace skgpu::mtl
18