EFormatArgTypeCode

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/ProfilingDebugging/FormatArgsTrace.h

Include

#include "ProfilingDebugging/FormatArgsTrace.h"

Syntax

enum EFormatArgTypeCode
{
    FormatArgTypeCode_CategoryBitShift         = 6,
    FormatArgTypeCode_SizeBitMask              = (1 << FormatArgTypeCode_CategoryBitShift) - 1,
    FormatArgTypeCode_CategoryBitMask          = ~FormatArgTypeCode_SizeBitMask,
    FormatArgTypeCode_CategoryInteger          = 1 << FormatArgTypeCode_CategoryBitShift,
    FormatArgTypeCode_CategoryFloatingPoint    = 2 << FormatArgTypeCode_CategoryBitShift,
    FormatArgTypeCode_CategoryString           = 3 << FormatArgTypeCode_CategoryBitShift,
}

Values

Name

Description

FormatArgTypeCode_CategoryBitShift

FormatArgTypeCode_SizeBitMask

FormatArgTypeCode_CategoryBitMask

FormatArgTypeCode_CategoryInteger

FormatArgTypeCode_CategoryFloatingPoint

FormatArgTypeCode_CategoryString

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss