rasterizer_interface: Add disk cache entry for the rasterizer

This commit is contained in:
ReinUsesLisp 2019-01-13 22:05:53 -03:00
parent f75174d195
commit 5bed286abf
6 changed files with 17 additions and 0 deletions

View file

@ -175,6 +175,9 @@ struct System::Impl {
return static_cast<ResultStatus>(static_cast<u32>(ResultStatus::ErrorLoader) +
static_cast<u32>(load_result));
}
renderer->Rasterizer().LoadDiskResources();
status = ResultStatus::Success;
return status;
}