Skip to content

Commit 7d2d1a2

Browse files
committed
AGS 6.0.1
1 parent 4f2442c commit 7d2d1a2

35 files changed

+51
-48
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ In addition to the library itself, the AGS SDK includes several samples to demon
1111
<a href="https://github.com/GPUOpen-LibrariesAndSDKs/AGS_SDK/releases/latest/"><img src="http://gpuopen-librariesandsdks.github.io/media/latest-release-button.svg" alt="Latest release" title="Latest release"></a>
1212
</div>
1313

14+
### What's new in AGS 6.0.1
15+
Version 6.0.1 is a bugfix release that corrects symbols for some of the DX11 shader intrinsics, and removes a rogue non-ASCII character from a comment in the library header which could cause a warning with Visual Studio.
16+
1417
### What's new in AGS 6.0
1518
Version 6.0 introduces several new shader intrinsics, namely a DX12 ray tracing hit token for RDNA2 hardware for ray tracing optimisation, ReadLaneAt and explicit float conversions. There is also a change to the initialization API to make sure the AGS dll matches the header and calling code.
1619

ags_lib/doc/amd_ags.chm

-52 Bytes
Binary file not shown.

ags_lib/hlsl/ags_shader_intrinsics_dx11.hlsl

Lines changed: 40 additions & 40 deletions
Large diffs are not rendered by default.

ags_lib/inc/amd_ags.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106

107107
#define AMD_AGS_VERSION_MAJOR 6 ///< AGS major version
108108
#define AMD_AGS_VERSION_MINOR 0 ///< AGS minor version
109-
#define AMD_AGS_VERSION_PATCH 0 ///< AGS patch version
109+
#define AMD_AGS_VERSION_PATCH 1 ///< AGS patch version
110110

111111
#ifdef __cplusplus
112112
extern "C" {
@@ -468,8 +468,8 @@ typedef struct AGSDX12ReturnedParams
468468
unsigned int baseInstance : 1; ///< Supported in Radeon Software Version 20.2.1 onwards.
469469
unsigned int getWaveSize : 1; ///< Supported in Radeon Software Version 20.5.1 onwards.
470470
unsigned int floatConversion : 1; ///< Supported in Radeon Software Version 20.5.1 onwards.
471-
unsigned int readLaneAt : 1; ///< Supported in Radeon Software Version 20.11.1 onwards.
472-
unsigned int rayHitToken : 1; ///< Supported in Radeon Software Version 20.11.1 onwards.
471+
unsigned int readLaneAt : 1; ///< Supported in Radeon Software Version 20.11.2 onwards.
472+
unsigned int rayHitToken : 1; ///< Supported in Radeon Software Version 20.11.2 onwards.
473473
unsigned int padding : 20; ///< Reserved
474474
} ExtensionsSupported;
475475
ExtensionsSupported extensionsSupported; ///< List of supported extensions
@@ -1109,7 +1109,7 @@ AMD_AGS_API AGSReturnCode agsDriverExtensionsDX11_SetMaxAsyncCompileThreadCount(
11091109

11101110
///
11111111
/// This method can be used to determine the total number of asynchronous shader compile jobs that are either
1112-
/// queued for waiting for compilation or being compiled by the driver’s asynchronous compilation threads.
1112+
/// queued for waiting for compilation or being compiled by the driver's asynchronous compilation threads.
11131113
/// This method can be called at any during the lifetime of the driver.
11141114
///
11151115
/// \param [in] context Pointer to a context.

ags_lib/lib/amd_ags_x64.dll

0 Bytes
Binary file not shown.

ags_lib/lib/amd_ags_x64.lib

0 Bytes
Binary file not shown.

ags_lib/lib/amd_ags_x64_2015_MD.lib

0 Bytes
Binary file not shown.

ags_lib/lib/amd_ags_x64_2015_MDd.lib

0 Bytes
Binary file not shown.

ags_lib/lib/amd_ags_x64_2015_MT.lib

0 Bytes
Binary file not shown.

ags_lib/lib/amd_ags_x64_2015_MTd.lib

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)