blob: 3b9979f6ae55f514ce8e405f00480786e44824de [file] [log] [blame] [edit]
/*
* Copyright 2023 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
* One day, slugs might be supported on a CPU backend, but for now are GPU-only.
* CPU-only builds need this file to allow SkPicture deserialization to link w/o errors.
*/
#include "include/private/chromium/Slug.h"
namespace sktext::gpu {
sk_sp<Slug> Slug::MakeFromBuffer(SkReadBuffer&) {
return nullptr;
}
}