Brian Salomon | cbcb0a1 | 2017-11-19 13:20:13 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2017 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 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 8 | #include "include/atlastext/SkAtlasTextContext.h" |
| 9 | #include "include/atlastext/SkAtlasTextRenderer.h" |
| 10 | #include "src/atlastext/SkInternalAtlasTextContext.h" |
Brian Salomon | cbcb0a1 | 2017-11-19 13:20:13 -0500 | [diff] [blame] | 11 | |
| 12 | sk_sp<SkAtlasTextContext> SkAtlasTextContext::Make(sk_sp<SkAtlasTextRenderer> renderer) { |
| 13 | return sk_sp<SkAtlasTextContext>(new SkAtlasTextContext(std::move(renderer))); |
| 14 | } |
| 15 | |
| 16 | SkAtlasTextContext::SkAtlasTextContext(sk_sp<SkAtlasTextRenderer> renderer) |
| 17 | : fInternalContext(SkInternalAtlasTextContext::Make(std::move(renderer))) {} |