0f2390f7fb
Chromium has been using the remote glyph cache for a few years now. It's time to give it a proper home. This is an intermediate CL. The old .h file includes the new .h file. After I change the include paths in Chromium, I will delete the old file. Change-Id: Iaf00c46aa0698326c0bdec9a0eed218bcc3e334e Reviewed-on: https://skia-review.googlesource.com/c/skia/+/482700 Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Herb Derby <herb@google.com>
92 lines
3.5 KiB
C++
92 lines
3.5 KiB
C++
/*
|
|
* Copyright 2019 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "include/core/SkColor.h"
|
|
#include "include/core/SkStream.h"
|
|
#include "include/core/SkSurface.h"
|
|
#include "include/private/chromium/SkChromeRemoteGlyphCache.h"
|
|
#include "src/core/SkScalerContext.h"
|
|
#include "src/core/SkTextBlobTrace.h"
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
|
|
int main(int argc, char** argv) {
|
|
std::unordered_map<uint64_t, uint32_t> counts;
|
|
size_t total = 0;
|
|
|
|
for (int i = 1; i < argc; i++) {
|
|
const char* filename = argv[i];
|
|
|
|
SkFILEStream in{filename};
|
|
std::vector<SkTextBlobTrace::Record> trace = SkTextBlobTrace::CreateBlobTrace(&in);
|
|
for (const SkTextBlobTrace::Record& record : trace) {
|
|
total++;
|
|
const SkPaint paint = record.paint;
|
|
bool fastByPass = paint.getStyle() == SkPaint::kFill_Style
|
|
&& paint.getPathEffect() == nullptr
|
|
&& paint.getMaskFilter() == nullptr;
|
|
if (fastByPass) {
|
|
uint64_t blobID = record.origUniqueID;
|
|
SkPoint offset = record.offset;
|
|
SkColor c = SkMaskGamma::CanonicalColor(paint.getColor());
|
|
uint32_t colorBits =
|
|
(SkColorGetR(c) >> 5u) << 6u
|
|
| (SkColorGetG(c) >> 5u) << 3u
|
|
| SkColorGetB(c) >> 5u;
|
|
|
|
SkFixed fx = (SkScalarToFixed(offset.x()) >> 13) & 7;
|
|
SkFixed fy = (SkScalarToFixed(offset.y()) >> 13) & 7;
|
|
uint32_t posBits = (fx << 3 | fy) << 12;
|
|
|
|
uint64_t blobKey = blobID << 32u | posBits | colorBits;
|
|
auto lookup = counts.find(blobKey);
|
|
if (lookup == counts.end()) {
|
|
bool ok;
|
|
std::tie(lookup, ok) = counts.insert({blobKey, 0});
|
|
SkASSERT(ok);
|
|
}
|
|
lookup->second += 1;
|
|
std::cout << std::hex << blobKey << "\n";
|
|
}
|
|
}
|
|
std::cerr << "trace: " << filename
|
|
<< " unique: " << counts.size()
|
|
<< " all: " << total
|
|
<< " ratio: " << (float)total/counts.size() << "\n";
|
|
|
|
SkRect bounds = {0, 0, 0, 0};
|
|
for (const SkTextBlobTrace::Record& record : trace) {
|
|
bounds.join(record.blob->bounds().makeOffset(record.offset.x(), record.offset.y()));
|
|
}
|
|
SkIRect iBounds = bounds.roundOut();
|
|
if (iBounds.size().isEmpty()) {
|
|
continue;
|
|
}
|
|
static constexpr SkColor kBackground = SK_ColorWHITE;
|
|
sk_sp<SkSurface> surf = SkSurface::MakeRasterN32Premul(iBounds.width() + 16,
|
|
iBounds.height() + 16);
|
|
SkCanvas* canvas = surf->getCanvas();
|
|
canvas->translate(8.0f - iBounds.x(), 8.0f - iBounds.y());
|
|
canvas->clear(kBackground);
|
|
|
|
for (const SkTextBlobTrace::Record& record : trace) {
|
|
canvas->drawTextBlob(
|
|
record.blob.get(), record.offset.x(), record.offset.y(), record.paint);
|
|
}
|
|
|
|
sk_sp<SkImage> img(surf->makeImageSnapshot());
|
|
if (sk_sp<SkData> png = img ? img->encodeToData() : nullptr) {
|
|
SkString path = SkStringPrintf("text_blob_trace_%04d.png", i);
|
|
SkFILEWStream(path.c_str()).write(png->data(), png->size());
|
|
}
|
|
}
|
|
return 0;
|
|
}
|