Navigation
API > API/Runtime > API/Runtime/RenderCore
Inheritance Hierarchy
- FTickableObjectRenderThread
- FShaderPipelineCache
- TRenderResourcePool
- FBoneBufferPool
- FClothBufferPool
- TXRLoadingScreenBase
- FDefaultXRLoadingScreen
References
| Module | RenderCore |
| Header | /Engine/Source/Runtime/RenderCore/Public/TickableObjectRenderThread.h |
| Include | #include "TickableObjectRenderThread.h" |
Syntax
class FTickableObjectRenderThread
Remarks
This class provides common registration for render thread tickable objects. It is an abstract base class requiring you to implement the Tick() method.
Constructors
| Type | Name | Description | |
|---|---|---|---|
FTickableObjectRenderThread
(
bool bRegisterImmediately, |
Registers this instance with the static array of tickable objects. |
Destructors
| Type | Name | Description | |
|---|---|---|---|
| Removes this instance from the static array of tickable objects. |
Functions
| Type | Name | Description | |
|---|---|---|---|
| TStatId | GetStatId () |
Return the stat id to use for this tickable | |
| bool | IsTickable () |
Pure virtual that must be overloaded by the inheriting class. | |
| bool | Used to determine if a rendering thread tickable object must have rendering in a non-suspended state during it's Tick function. | ||
| void | Register
(
bool bIsRenderingThreadObject |
Registers the object for ticking. | |
| void | Tick
(
float DeltaTime |
Pure virtual that must be overloaded by the inheriting class. | |
| void | Unregister () |
Classes
| Type | Name | Description | |
|---|---|---|---|
| FRenderingThreadTickableObjectsArray | Static array of tickable objects that are ticked from rendering thread |
Constants
| Name | Description |
|---|---|
| RenderingThreadHighFrequencyTickableObjects | |
| RenderingThreadTickableObjects | Tick all rendering thread tickable objectsStatic array of tickable objects that are ticked from rendering thread |