f0c986503b
SkGlyphCache dumps too many glyphs, and to reduce the trace size, RequestDetails enum is added to SkTraceMemoryDump interface. This would tell caches to dump only requested details or not a detailed dump. BUG=499731 Review URL: https://codereview.chromium.org/1310123007
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
/*
|
|
* Copyright 2015 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "SkTraceMemoryDump.h"
|
|
|
|
#include "Test.h"
|
|
|
|
/*
|
|
* Build test for SkTraceMemoryDump.
|
|
*/
|
|
class TestSkTraceMemoryDump : public SkTraceMemoryDump {
|
|
public:
|
|
TestSkTraceMemoryDump() { }
|
|
~TestSkTraceMemoryDump() override { }
|
|
|
|
void dumpNumericValue(const char* dumpName, const char* valueName, const char* units,
|
|
uint64_t value) override { }
|
|
void setMemoryBacking(const char* dumpName, const char* backingType,
|
|
const char* backingObjectId) override { }
|
|
void setDiscardableMemoryBacking(
|
|
const char* dumpName,
|
|
const SkDiscardableMemory& discardableMemoryObject) override { }
|
|
LevelOfDetail getRequestedDetails() const override {
|
|
return SkTraceMemoryDump::kObjectsBreakdowns_LevelOfDetail;
|
|
}
|
|
};
|
|
|
|
DEF_TEST(SkTraceMemoryDump, reporter) {
|
|
TestSkTraceMemoryDump x;
|
|
x.dumpNumericValue("foobar", "size", "bytes", 42);
|
|
if (x.getRequestedDetails() == SkTraceMemoryDump::kObjectsBreakdowns_LevelOfDetail) {
|
|
x.dumpNumericValue("foobar/object1", "size", "bytes", 23);
|
|
}
|
|
}
|