Skip to content

Commit 07c0b6e

Browse files
committed
Pull latest ags_lib in preparation for AGS_SDK patch release
2 parents 16f6f82 + 3757a80 commit 07c0b6e

File tree

8 files changed

+17
-5
lines changed

8 files changed

+17
-5
lines changed

ags_lib/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# AMD AGS Library Changelog
2+
3+
### v3.1.1 - 2016-01-28
4+
* Return null for the context when initialization fails
5+
* Add version number defines to `amd_ags.h`
6+
* Remove `radeonSoftwareVersion` until needed driver update is public
7+
8+
### v3.1.0 - 2016-01-26
9+
* Initial release on GitHub

ags_lib/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# AMD AGS Library
22
<img src="doc/amd_logo_black.png" width="512" height="123" />
33

4-
The AMD GPU Services (AGS) library provides software developers with the ability to query AMD GPU software and hardware state information that is not normally available through standard operating systems or graphic APIs. Version 3.1 of the library includes support for querying graphics driver version info, GPU performance, Crossfire (AMD's multi-GPU rendering technology) configuration info, as well as Eyefinity (AMD's multi-display rendering technology) configuration info. AGS also exposes some additional functionality supported in the DirectX11 AMD driver.
4+
The AMD GPU Services (AGS) library provides software developers with the ability to query AMD GPU software and hardware state information that is not normally available through standard operating systems or graphic APIs. Version 3.1 of the library includes support for querying graphics driver version info, GPU performance, Crossfire&trade; (AMD's multi-GPU rendering technology) configuration info, and Eyefinity (AMD's multi-display rendering technology) configuration info. AGS also exposes the explicit Crossfire API, as well as additional functionality supported in the AMD driver for DirectX 11.
55

66
This version of the AGS library is just the documentation, header file, import libraries, and DLLs. For the full AGS SDK, which includes samples, visit the AGS SDK repository:
77
https://github.com/GPUOpen-LibrariesAndSDKs/AGS_SDK

ags_lib/doc/AGS Documentation.pdf

-351 Bytes
Binary file not shown.

ags_lib/inc/amd_ags.h

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,12 @@
1919
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2020
// THE SOFTWARE.
2121
//
22-
#ifndef __AMD_AGS_H
23-
#define __AMD_AGS_H
22+
#ifndef AMD_AGS_LIB_AMD_AGS_H_
23+
#define AMD_AGS_LIB_AMD_AGS_H_
24+
25+
#define AMD_AGS_LIB_VERSION_MAJOR 3
26+
#define AMD_AGS_LIB_VERSION_MINOR 1
27+
#define AMD_AGS_LIB_VERSION_PATCH 1
2428

2529
#ifdef __cplusplus
2630
extern "C" {
@@ -172,7 +176,6 @@ struct AGSGPUInfo
172176
int revisionId; // The revision id
173177

174178
const char* driverVersion; // The driver package version
175-
const char* radeonSoftwareVersion; // The Radeon Software version
176179

177180
int iNumCUs; // Number of GCN compute units. Zero if not GCN
178181
int iCoreClock; // core clock speed at 100% power in MHz
@@ -424,4 +427,4 @@ AMD_AGS_API AGSReturnCode agsDriverExtensions_NotifyResourceEndAllAccess( AGSCon
424427
}; // extern C
425428
#endif
426429

427-
#endif // __AMD_AGS_H
430+
#endif // AMD_AGS_LIB_AMD_AGS_H_

ags_lib/lib/amd_ags_x64.dll

-3 KB
Binary file not shown.

ags_lib/lib/amd_ags_x64.lib

0 Bytes
Binary file not shown.

ags_lib/lib/amd_ags_x86.dll

-512 Bytes
Binary file not shown.

ags_lib/lib/amd_ags_x86.lib

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)