Wingetlywingetly
← All apps

FramePro

by PureDev Softwarev1.12.1.0

Last updated

C++ Frame Profiler

Install with winget

$ winget install --id PureDevSoftware.FramePro --exact --version 1.12.1.0

Run in Command Prompt, PowerShell, or Windows Terminal. Prompts for any agreements.

Silent install command for FramePro

FramePro uses EXE (Burn bundle). The silent install switches are /quiet /norestart.

One-line silent install (x64, machine scope)
msiexec.exe /i download.php /quiet /norestart

See the full silent install reference for FramePro

Built by Pckgr

For Intune admins

Stop chasing app updates. Pckgr patches them for you.

Automated application patching for Microsoft Intune. Pckgr keeps a curated library of 1,000+ apps continuously up-to-date in your tenant via Microsoft Graph - no manual repackaging, no chasing vendor sites.

Start free 30-day trial

No credit card required.

About

Getting Started

Integrate FramePro into your codebase in minutes - simply add FramePro.cpp/h into your code and start adding scopes. Add timing scopes using the supplied macros to any function or block of code. FramePro will then track the time, thread and core of each scope. This scope information will be sent to the FramePro application, where thread and core utilization can be viewed for each frame.

Why FramePro?

FramePro has minimal overhead. When profiling, the first rule is to not change the behavior of what is being profiled. FramePro allows you to add thousands of timing scopes per frame with no noticeable impact on frame rate.

Profile in real-time. In interactive mode you can see the data as it is being recorded, easily spot a frame rate spike, and immediately zoom in to that frame to find the cause.

No limit to the length of a capture. Unlike many profilers which can only capture a few seconds worth of data, FramePro can capture long play sessions.

Framepro uses the highest resolution timer available on your system. It is configured for many platforms and easily configurable.

FramePro is easy and intuitive to use. Everyone who sees FramePro in action immediately 'gets it'. FramePro can be used by programmers and non-programmers alike.

How it works

Call the FRAMEPRO_FRAME_START() macro at the start of your frame. This tells FramePro when the frame starts and ends and this will be marked on the timeline in both the thread and code view. This simple feature is one which many profilers lack.

Use the FRAMEPRO_SCOPE() macro to time a function call. This creates an object on the stack that records information. In its constructor it records the start time using the high resolution system timer. In its destructor it records the end time, the current thread id, the current CPU core, and the current function name. This information is then copied onto a thread local storage (TLS) buffer. These TLS buffers are sent once a frame on a separate thread.

The scope recording code is minimal and consists of only a few instructions. The thread local storage means that there is no locking or contention with other threads. The function name string is a string literal, and the only value that is sent to FramePro is the pointer. The actual string value is resolved later. All this means that there are only a few instruction per scope, and only a few bytes of data is copied to the send buffer. this allows you to add thousands of scopes per frame without affecting frame rate.

There are a number of different scope macros. If you want to name a scope use FRAMEPRO_NAMED_SCOPE("MyScope"). You can also send dynamic (non-literal) strings using FRAMEPRO_DYNAMIC_SCOPE(). to scope idle processor time, such as in an event wait, use FRAMEPRO_IDLE_SCOPE(). This will show up in a different colour in FramePro. Use the conditional scopes to only show the scope if it is longer than a specified time. This time can be dynamically changed in FramePro while recording. The scope macros are fully documented in FramePro.h.

FramePro can run in connected or offline mode. When running in connected mode your application will send data using sockets every frame. FramePro will then display the data as it is received. You can pause the data and inspect frames at any time while recording. If you don't want the overhead of FramePro on your system you can run in non-interactive mode and it will take up almost no CPU. This is useful when profiling on the same PC as you are running the application. For best results, it is recommended that you run your application/game on a different PC or Console and then connect in interactive mode.

If your codebase doesn't support sockets or you can't connect for some other reason you can run FramePro in offline mode and all network data will be written to a .framepro_dump file. This file can then be loaded into framepro.

Installers · v1.12.1.0

ArchitectureTypeScopeInstallDownload
x64EXE
Burn bundle
machineDirect

Copy a command tailored to that specific architecture, type, and scope - useful when winget would otherwise pick a different default.

Security

No known CVEs for FramePro.

Coverage is best-effort and depends on a winget package mapping to an NVD CPE entry. Absence here is not a guarantee of safety.

Related apps

  • 10xPureDev Software
    PureDevSoftware.10xv1.0.544.0

    A High-Performance C++ Editor

  • MemProPureDev Software
    PureDevSoftware.MemProv1.12.0.0

    C++ Memory Profiler

  • Visual Studio BuildTools 2026Microsoft Corporation
    Microsoft.VisualStudio.BuildToolsv18.10.0

    These Build Tools allow you to build Visual Studio projects from a command-line interface.

  • Microsoft Visual C++ 2013 Redistributable (x86)Microsoft Corporation
    Microsoft.VCRedist.2013.x86v12.0.40664.0

    The Microsoft Visual C++ 2013 Redistributable Package (x86)

  • Microsoft Visual C++ 2013 Redistributable (x64)Microsoft Corporation
    Microsoft.VCRedist.2013.x64v12.0.40664.0

    The Microsoft Visual C++ 2013 Redistributable Package (x64).

  • Visual Studio BuildTools 2022Microsoft Corporation
    Microsoft.VisualStudio.2022.BuildToolsv17.14.40

    These Build Tools allow you to build Visual Studio projects from a command-line interface.

More from PureDev Software or browse c++, cpp, profiler.

Frequently asked questions

How do I install FramePro on Windows?
Open Windows Terminal, PowerShell, or Command Prompt and run: winget install --id PureDevSoftware.FramePro --exact --version 1.12.1.0. winget downloads the installer from PureDev Software and runs it. Requires Windows 10 (1809+) or Windows 11.
How do I install FramePro silently for unattended deployment?
Add --silent and accept the agreements upfront: winget install --id PureDevSoftware.FramePro --exact 1.12.1.0 --silent --accept-package-agreements --accept-source-agreements. This is the variant Intune, Configuration Manager, and other deployment tools should use.
What are the silent install switches for FramePro?
FramePro uses EXE (Burn bundle). Run the downloaded installer with: msiexec.exe /i download.php /quiet /norestart. The silent switches are /quiet /norestart.
How do I uninstall FramePro via winget?
Run: winget uninstall --id PureDevSoftware.FramePro --exact. Add --silent for unattended uninstalls. winget will use the registered uninstaller from FramePro's Apps & Features entry.
Is FramePro free?
FramePro is distributed under Proprietary. Refer to the publisher (https://www.puredevsoftware.com/framepro/) for the full license terms - Wingetly itself does not charge for installation.
Does FramePro work on Windows 10?
Yes, as long as your Windows 10 build supports winget (1809 or newer). winget ships with App Installer on Windows 10/11 and pulls FramePro directly from the publisher.
How do I keep FramePro up to date?
Run winget upgrade --id PureDevSoftware.FramePro --exact, or winget upgrade --all to update everything winget tracks. We index 1 version of FramePro from microsoft/winget-pkgs.