Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit da8a5107 authored by Stan Iliev's avatar Stan Iliev
Browse files

Increase ShaderCache max size to accomodate Vulkan pipeline cache

Bug: 123311517
Test: Ran on device
Change-Id: Id7127b391e44fb9661ad4eb847180dc3740abe0f
parent 9a840641
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -31,8 +31,8 @@ namespace skiapipeline {

// Cache size limits.
static const size_t maxKeySize = 1024;
static const size_t maxValueSize = 64 * 1024;
static const size_t maxTotalSize = 512 * 1024;
static const size_t maxValueSize = 512 * 1024;
static const size_t maxTotalSize = 1024 * 1024;

ShaderCache::ShaderCache() {
    // There is an "incomplete FileBlobCache type" compilation error, if ctor is moved to header.