rasterizer_interface: Add disk cache entry for the rasterizer

This commit is contained in:
ReinUsesLisp 2019-01-13 22:05:53 -03:00
parent 84412591c9
commit 0ed5d728ca
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;
}