Just for BSoD

This commit is contained in:
Kelebek1
2021-05-30 18:06:58 +01:00
parent 080d973648
commit 18c7162093
2 changed files with 2 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ class TextureCache {
static constexpr u64 PAGE_BITS = 20;
/// Time since last access that images are removed from the cache
static constexpr auto GC_IMAGE_EXPIRATION = std::chrono::minutes(4);
static constexpr auto GC_IMAGE_EXPIRATION = std::chrono::minutes(2);
/// Time between checking for expired images
static constexpr auto GC_IMAGE_REMOVAL = std::chrono::seconds(10);
/// Time between updating framebuffer references.

View File

@@ -71,7 +71,7 @@ private:
/// Allocates and releases memory allocations on demand.
class MemoryAllocator {
/// Time since last commit was made that allocations are removed
static constexpr auto ALLOCATION_EXPIRATION = std::chrono::minutes(4);
static constexpr auto ALLOCATION_EXPIRATION = std::chrono::minutes(2);
/// Time between checking for expired allocations
static constexpr auto ALLOCATION_TICK = std::chrono::seconds(10);