Home
last modified time | relevance | path

Searched refs:ClientPaintCache (Results 1 – 21 of 21) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/cc/paint/
H A Dpaint_cache.cc26 constexpr size_t ClientPaintCache::kNoCachingBudget;
28 ClientPaintCache::ClientPaintCache(size_t max_budget_bytes) in ClientPaintCache() function in cc::ClientPaintCache
30 ClientPaintCache::~ClientPaintCache() = default;
32 bool ClientPaintCache::Get(PaintCacheDataType type, PaintCacheId id) { in Get()
36 void ClientPaintCache::Put(PaintCacheDataType type, in Put()
50 void ClientPaintCache::EraseFromMap(Iterator it) { in EraseFromMap()
56 void ClientPaintCache::FinalizePendingEntries() { in FinalizePendingEntries()
60 void ClientPaintCache::AbortPendingEntries() { in AbortPendingEntries()
69 void ClientPaintCache::Purge(PurgedData* purged_data) { in Purge()
82 bool ClientPaintCache::PurgeAll() { in PurgeAll()
H A Dpaint_cache.h50 class CC_PAINT_EXPORT ClientPaintCache {
57 explicit ClientPaintCache(size_t max_budget_bytes);
58 ClientPaintCache(const ClientPaintCache&) = delete;
59 ~ClientPaintCache();
61 ClientPaintCache& operator=(const ClientPaintCache&) = delete;
H A Dpaint_cache_unittest.cc41 ClientPaintCache client_cache(kDefaultBudget); in TEST_P()
48 ClientPaintCache client_cache(kDefaultBudget); in TEST_P()
55 ClientPaintCache::PurgedData purged_data; in TEST_P()
69 ClientPaintCache client_cache(kDefaultBudget); in TEST_P()
80 ClientPaintCache client_cache(kDefaultBudget); in TEST_P()
H A Dpaint_op_buffer_serializer.h14 class ClientPaintCache; variable
26 ClientPaintCache* paint_cache,
110 ClientPaintCache* paint_cache_;
128 ClientPaintCache* paint_cache,
H A Dpaint_op_buffer_serializer.cc51 ClientPaintCache* paint_cache, in PaintOpBufferSerializer()
391 ClientPaintCache* paint_cache, in SimpleBufferSerializer()
H A Dpaint_op_buffer.h43 class ClientPaintCache; variable
162 ClientPaintCache* paint_cache,
177 ClientPaintCache* paint_cache = nullptr;
H A Dpaint_op_buffer.cc335 ClientPaintCache* paint_cache, in SerializeOptions()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/cc/paint/
H A Dpaint_cache.cc24 ClientPaintCache::ClientPaintCache(size_t max_budget_bytes) in ClientPaintCache() function in cc::ClientPaintCache
26 ClientPaintCache::~ClientPaintCache() = default;
28 bool ClientPaintCache::Get(PaintCacheDataType type, PaintCacheId id) { in Get()
32 void ClientPaintCache::Put(PaintCacheDataType type, in Put()
44 void ClientPaintCache::EraseFromMap(Iterator it) { in EraseFromMap()
50 void ClientPaintCache::FinalizePendingEntries() { in FinalizePendingEntries()
54 void ClientPaintCache::AbortPendingEntries() { in AbortPendingEntries()
63 void ClientPaintCache::Purge(PurgedData* purged_data) { in Purge()
76 bool ClientPaintCache::PurgeAll() { in PurgeAll()
H A Dpaint_cache.h50 class CC_PAINT_EXPORT ClientPaintCache {
52 explicit ClientPaintCache(size_t max_budget_bytes);
53 ClientPaintCache(const ClientPaintCache&) = delete;
54 ~ClientPaintCache();
56 ClientPaintCache& operator=(const ClientPaintCache&) = delete;
H A Dpaint_cache_unittest.cc41 ClientPaintCache client_cache(kDefaultBudget); in TEST_P()
48 ClientPaintCache client_cache(kDefaultBudget); in TEST_P()
55 ClientPaintCache::PurgedData purged_data; in TEST_P()
69 ClientPaintCache client_cache(kDefaultBudget); in TEST_P()
80 ClientPaintCache client_cache(kDefaultBudget); in TEST_P()
H A Dpaint_op_buffer_serializer.h14 class ClientPaintCache; variable
26 ClientPaintCache* paint_cache,
110 ClientPaintCache* paint_cache_;
128 ClientPaintCache* paint_cache,
H A Dpaint_op_buffer_serializer.cc59 ClientPaintCache* paint_cache, in PaintOpBufferSerializer()
426 ClientPaintCache* paint_cache, in SimpleBufferSerializer()
H A Dpaint_op_buffer.h42 class ClientPaintCache; variable
153 ClientPaintCache* paint_cache,
168 ClientPaintCache* paint_cache = nullptr;
H A Dpaint_op_buffer.cc333 ClientPaintCache* paint_cache, in SerializeOptions()
/dports/www/chromium-legacy/chromium-88.0.4324.182/cc/test/
H A Dtest_options_provider.h40 ClientPaintCache* client_paint_cache() { return &client_paint_cache_; } in client_paint_cache()
78 ClientPaintCache client_paint_cache_;
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/gpu/command_buffer/client/
H A Draster_implementation.h320 cc::ClientPaintCache* GetOrCreatePaintCache();
405 cc::ClientPaintCache::PurgedData temp_paint_cache_purged_data_;
406 std::unique_ptr<cc::ClientPaintCache> paint_cache_;
H A Draster_implementation.cc1335 cc::ClientPaintCache* RasterImplementation::GetOrCreatePaintCache() { in GetOrCreatePaintCache()
1344 paint_cache_ = std::make_unique<cc::ClientPaintCache>(paint_cache_budget); in GetOrCreatePaintCache()
/dports/www/chromium-legacy/chromium-88.0.4324.182/gpu/command_buffer/client/
H A Draster_implementation.h339 cc::ClientPaintCache* GetOrCreatePaintCache();
424 cc::ClientPaintCache::PurgedData temp_paint_cache_purged_data_;
425 std::unique_ptr<cc::ClientPaintCache> paint_cache_;
H A Draster_implementation.cc1459 cc::ClientPaintCache* RasterImplementation::GetOrCreatePaintCache() { in GetOrCreatePaintCache()
1468 paint_cache_ = std::make_unique<cc::ClientPaintCache>(paint_cache_budget); in GetOrCreatePaintCache()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/graphics/
H A Didentifiability_paint_op_digest.h95 cc::ClientPaintCache paint_cache_;
H A Didentifiability_paint_op_digest.cc41 paint_cache_(cc::ClientPaintCache::kNoCachingBudget), in IdentifiabilityPaintOpDigest()