Search Results for

    Show / Hide Table of Contents

    Struct MemoryStats

    Contains information about current memory usage and capacity.

    Assembly: FlaxEngine.dll
    File: Engine/Platform/MemoryStats.h
    Syntax
    public struct MemoryStats

    Fields

    ExtraDevelopmentMemory

    Amount of extra memory assigned by the platform for development. Only used on platforms with fixed memory and no paging.

    Declaration
    public uint64 ExtraDevelopmentMemory = 0
    Field Value
    uint64

    ProgramSizeMemory

    Amount of memory used initially by the program data (executable code, exclusive shared libraries and global static data sections).

    Declaration
    public uint64 ProgramSizeMemory = 0
    Field Value
    uint64

    TotalPhysicalMemory

    Total amount of physical memory in bytes.

    Declaration
    public uint64 TotalPhysicalMemory = 0
    Field Value
    uint64

    TotalVirtualMemory

    Total amount of virtual memory in bytes.

    Declaration
    public uint64 TotalVirtualMemory = 0
    Field Value
    uint64

    UsedPhysicalMemory

    Amount of used physical memory in bytes.

    Declaration
    public uint64 UsedPhysicalMemory = 0
    Field Value
    uint64

    UsedVirtualMemory

    Amount of used virtual memory in bytes.

    Declaration
    public uint64 UsedVirtualMemory = 0
    Field Value
    uint64

    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright © 2012-2024 Wojciech Figat