blob: cd624926f5ff2bebf9a376238e709458ebe4e197 [file]
/*
* Copyright 2023 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef sktext_TextBlobMailbox_DEFINED
#include <cstdint>
namespace sktext {
// With a Ganesh or Graphite backend, this signals the given cache it can purge
// assets related to the given blob ID. A no-op on the software backend.
void PostPurgeBlobMessage(uint32_t blobID, uint32_t cacheID);
}
#endif