1 /* 2 * Copyright 2022 Google LLC 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/GlobalCache.h" 9 10 #include "src/core/SkShaderCodeDictionary.h" 11 12 namespace skgpu { 13 GlobalCache()14GlobalCache::GlobalCache() : fShaderCodeDictionary(std::make_unique<SkShaderCodeDictionary>()) {} 15 ~GlobalCache()16GlobalCache::~GlobalCache() {}; 17 18 } // namespace skgpu 19