Navigation
API > API/Runtime > API/Runtime/RHI > API/Runtime/RHI/TPsoLruCache
An entry in the LRU cache.
| Name | FCacheEntry |
| Type | struct |
| Header File | /Engine/Source/Runtime/RHI/Public/PsoLruCache.h |
| Include Path | #include "PsoLruCache.h" |
Syntax
struct FCacheEntry
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FCacheEntry
(
const KeyType& InKey, |
Create and initialize a new instance. | PsoLruCache.h |
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| Key | KeyType | The entry's lookup key. | PsoLruCache.h | |
| LessRecent | FCacheEntry * | The less recent entry in the linked list. | PsoLruCache.h | |
| MoreRecent | FCacheEntry * | The more recent entry in the linked list. | PsoLruCache.h | |
| Value | ValueType | The entry's value. | PsoLruCache.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void LinkBefore
(
FCacheEntry* Other |
Add this entry before the given one. | PsoLruCache.h | |
void Unlink() |
Remove this entry from the list. | PsoLruCache.h |