Skip to content

Commit 140080d

Browse files
release candidate changes
1 parent 456079e commit 140080d

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

IntelPresentMon/AppCef/AppCef.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ IDI_ICON1 ICON "flask.ico"
6161
//
6262

6363
VS_VERSION_INFO VERSIONINFO
64-
FILEVERSION 1,0,0,0
65-
PRODUCTVERSION 2,1,0,0
64+
FILEVERSION 1,0,2,0
65+
PRODUCTVERSION 2,2,0,0
6666
FILEFLAGSMASK 0x3fL
6767
#ifdef _DEBUG
6868
FILEFLAGS 0x1L
@@ -79,12 +79,12 @@ BEGIN
7979
BEGIN
8080
VALUE "CompanyName", "Intel(R) Corporation"
8181
VALUE "FileDescription", "Intel(R) PresentMon application"
82-
VALUE "FileVersion", "1.0.0.0"
82+
VALUE "FileVersion", "1.0.2.0"
8383
VALUE "InternalName", "CefNano.exe"
8484
VALUE "LegalCopyright", "Copyright (C) 2017-2024"
8585
VALUE "OriginalFilename", "CefNano.exe"
8686
VALUE "ProductName", "Intel(R) PresentMon"
87-
VALUE "ProductVersion", "2.1.0.0"
87+
VALUE "ProductVersion", "2.2.0.0"
8888
END
8989
END
9090
BLOCK "VarFileInfo"

IntelPresentMon/PMInstaller/PresentMon.wxs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Id="*"
55
Name="Intel(R) PresentMon"
66
Language="1033"
7-
Version="2.1.0.0"
7+
Version="2.2.0.0"
88
Manufacturer="Intel(R) Corporation"
99
UpgradeCode="CD0D489E-0FE7-452D-90D9-F94F3F5FF410">
1010

@@ -16,7 +16,7 @@
1616

1717
<MediaTemplate EmbedCab="yes" />
1818

19-
<?define console_app_ver = 2.1.0 ?>
19+
<?define console_app_ver = 2.2.0 ?>
2020
<?define console_app_path = $(pm.GetConsoleAppPath($(var.SolutionDir), $(var.console_app_ver))) ?>
2121
<?define console_app_filename = $(pm.GetConsoleAppFileName($(var.console_app_ver))) ?>
2222
<?define has_console_app = $(pm.CheckFileExists($(var.console_app_path))) ?>
0 Bytes
Binary file not shown.
Binary file not shown.

PresentMon.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup Label="UserMacros">
4-
<!-- PresentMonVersion should be "dev" on main branch, and the version number (e.g., 2.1.0) on release branches. -->
5-
<PresentMonVersion>dev</PresentMonVersion>
4+
<!-- PresentMonVersion should be "dev" on main branch, and the version number (e.g., 2.2.0) on release branches. -->
5+
<PresentMonVersion>2.2.0</PresentMonVersion>
66
<PresentMonPlatform>$(Platform)</PresentMonPlatform>
77
</PropertyGroup>
88
<PropertyGroup Label="UserMacros" Condition="'$(Platform)'=='Win32'">

Provider/Version.rc

0 Bytes
Binary file not shown.

README-ConsoleApplication.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ The PresentMon/ directory contains source for a standalone console application t
44
*PresentMon SDK* to capture and analyze graphics applications, outputting data to the console and/or
55
CSV file(s).
66

7+
A binary of the console application is provided in the release, e.g.:
8+
[PresentMon-2.2.0-x64.exe](https://github.com/GameTechDev/PresentMon/releases/download/v2.2.0/PresentMon-2.2.0-x64.exe).
9+
710
## Command line options
811

912
| Capture Target Options | |
@@ -95,7 +98,8 @@ Default metrics include:
9598
| *DisplayLatency* | How long it took from the start of this frame until the frame was displayed on the screen. |
9699
| *DisplayedTime* | How long the frame was displayed on the screen, or 'NA' if the frame was not displayed. |
97100
| *AnimationError* | The difference between the previous frame's CPU delta and display delta. |
98-
| *ClickToPhotonLatency* | How long it took from the earliest keyboard or mouse interaction that contributed to this frame until this frame was displayed. When supported HW measuring devices are not available, this is the software-visible subset of the full click-to-photon latency and doesn't include:<br>&bull; time spent processing input in the keyboard/controller hardware or drivers (typically a fixed additional overhead),<br>&bull; time spent processing the output in the display hardware or drivers (typically a fixed additional overhead), and<br>&bull; a combination of display blanking interval and scan time (which varies, depending on timing and tearing). |
101+
| *ClickToPhotonLatency* | How long it took from the earliest mouse click that contributed to this frame until this frame was displayed. When supported HW measuring devices are not available, this is the software-visible subset of the full click-to-photon latency and doesn't include:<br>&bull; time spent processing input in the keyboard/controller hardware or drivers (typically a fixed additional overhead),<br>&bull; time spent processing the output in the display hardware or drivers (typically a fixed additional overhead), and<br>&bull; a combination of display blanking interval and scan time (which varies, depending on timing and tearing). |
102+
| *AllInputToPhotonLatency* | How long it took from the earliest keyboard or mouse interaction that contributed to this frame until this frame was displayed. |
99103

100104
Some metrics are enabled or disabled depending on the command line options:
101105

0 commit comments

Comments
 (0)