Navigation
API > API/Runtime > API/Runtime/RHI
| Name | ERenderQueryType |
| Type | enum |
| Header File | /Engine/Source/Runtime/RHI/Public/RHIDefinitions.h |
| Include Path | #include "RHIDefinitions.h" |
Syntax
enum ERenderQueryType
{
RQT_Undefined,
RQT_Occlusion,
RQT_AbsoluteTime,
}
Values
| Name | Remarks |
|---|---|
| RQT_Undefined | E.g. WaitForFrameEventCompletion() |
| RQT_Occlusion | Result is the number of samples that are not culled (divide by MSAACount to get pixels) |
| RQT_AbsoluteTime | Result is current time in micro seconds = 1/1000 ms = 1/1000000 sec (not a duration). |