Skip to content

Commit

Permalink
Version 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sawickiap committed Mar 3, 2024
1 parent 4dae859 commit 9138209
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Version 3.2.0 (2024-03-03)

Changes:

- Updated NVAPI to version R550. Added information returned by: `NvAPI_GPU_GetGPUInfo` / `NV_GPU_INFO`, `NvAPI_GPU_GetGspFeatures` / `NV_GPU_GSP_INFO`, `NvAPI_D3D12_GetOptimalThreadCountForMesh`.
- Improved decoding of `VendorId` and `SubSystemId`. (Thanks @Devaniti !)

Compiled with DirectX 12 Agility SDK 1.611.0 ("D3d12info.exe") / 1.711.3-preview ("D3d12info_preview.exe"), AMD AGS 6.2.0, NVAPI R550, Intel GPU Detect from 2023-07-18.

# Version 3.1.0 (2024-01-20)

Changes:
Expand Down
4 changes: 2 additions & 2 deletions Src/Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ For more information, see files README.md, LICENSE.txt.

const wchar_t* const PROGRAM_NAME = L"D3d12info";
const char* const PROGRAM_NAME_ANSI = "D3d12info";
const wchar_t* const PROGRAM_VERSION = L"3.1.0";
const uint32_t PROGRAM_VERSION_NUMBER = (3u << 20) | (1u << 10) | (0u);
const wchar_t* const PROGRAM_VERSION = L"3.2.0";
const uint32_t PROGRAM_VERSION_NUMBER = (3u << 20) | (2u << 10) | (0u);

wstring SizeToStr(uint64_t size)
{
Expand Down

0 comments on commit 9138209

Please sign in to comment.