|
34 | 34 | /// \endinternal |
35 | 35 | /// |
36 | 36 | /// --------------------------------------- |
| 37 | +/// What's new in AGS 5.4.2 since version 5.4.1 |
| 38 | +/// --------------------------------------- |
| 39 | +/// AGS 5.4.2 includes the following updates: |
| 40 | +/// * sharedMemoryInBytes has been reinstated. |
| 41 | +/// * Clock speed returned for APUs. |
| 42 | +/// |
| 43 | +/// --------------------------------------- |
37 | 44 | /// What's new in AGS 5.4.1 since version 5.4.0 |
38 | 45 | /// --------------------------------------- |
39 | 46 | /// AGS 5.4.1 includes the following updates: |
|
85 | 92 |
|
86 | 93 | #define AMD_AGS_VERSION_MAJOR 5 ///< AGS major version |
87 | 94 | #define AMD_AGS_VERSION_MINOR 4 ///< AGS minor version |
88 | | -#define AMD_AGS_VERSION_PATCH 1 ///< AGS patch version |
| 95 | +#define AMD_AGS_VERSION_PATCH 2 ///< AGS patch version |
89 | 96 |
|
90 | 97 | #ifdef __cplusplus |
91 | 98 | extern "C" { |
@@ -336,7 +343,9 @@ struct AGSDeviceInfo |
336 | 343 | float teraFlops; ///< Teraflops of GPU. Zero if not GCN onwards. Calculated from iCoreClock * iNumCUs * 64 Pixels/clk * 2 instructions/MAD |
337 | 344 |
|
338 | 345 | int isPrimaryDevice; ///< Whether or not this is the primary adapter in the system. Not set on the WACK version. |
339 | | - long long localMemoryInBytes; ///< The size of local memory in bytes. 0 for non AMD hardware. |
| 346 | + unsigned long long localMemoryInBytes; ///< The size of local memory in bytes. 0 for non AMD hardware. |
| 347 | + unsigned long long sharedMemoryInBytes; ///< The size of system memory available to the GPU in bytes. It is important to factor this into your VRAM budget for APUs |
| 348 | + ///< as the reported local memory will only be a small fraction of the total memory available to the GPU. |
340 | 349 |
|
341 | 350 | int numDisplays; ///< The number of active displays found to be attached to this adapter. |
342 | 351 | AGSDisplayInfo* displays; ///< List of displays allocated by AGS to be numDisplays in length. |
|
0 commit comments