-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Khronos Vulkan Headers to 1.3.297 Fix dEQP-VK.binding_model.descriptor_buffer.* - test failure Fix queue family index asserts Support for Disabling Color Compression setting for driver experiments Fixes for VK_KHR_maintenance5 flags Allow vkSetDebugUtilsObjectNameExt to label an acceleration structure in RRA Fix cache masks in renderpass barriers Implement VK_MESA_image_alignment_control support and enable it for vkd3d Fix crash happened in vkDestroyInstance_SG during test exit Always return surface formats if the screen is missing Add driver support for handling RT pipelines in RGA [VKD3D] Add VkPhysicalDeviceImageCompressionControlFeaturesEXT for VK_EXT_image_compression_control Remove unreferenced app profiles Add LDSPsGroupSize tuning option [KHR_PUSH_DESCRIPTOR] Change restriction for some entry points Ubuntu24.04: Improper scaling is observed in games @1080p Resolution Fix Llama2 Vulkan version only works with Mem Carve-out size >= 16GB Fix queueFlags in Device::Create Fix GPURT descriptor table node mapping Add workaround for the corruption of '7Days To Die' Fix unpackedBufferFormat in vertex offset mode Consider Transfer write (USAGE_TRANSFER_DST) dependencies when initializing the barrier policy for resources Bump up GPURT version to 49 Add missing mesh/task support [KHR_maintenance6] Add device extensions for existing entry points Add RenderOp Trace Controller to UberTrace DevModeMgr Consolidate preColorResolve and preDsResolve syncs into one flag Fix split raytracing layer dispatches too many workgroups Fix vkGetPhysicalDeviceImageFormatProperties does not take into account VK_IMAGE_CREATE_BLOCK_TEXEL_VIEW_COMPATIBLE_BIT Implement VK_EXT_device_generated_commands support Update PAL Version in XGL 905 Fix vkGetPipelineBinaryDataKHR() not writing binary key Fix GPU hang with vkd3d Raytracing sample Bump LLPC version to 75 Implement VK_EXT_pipeline_robustness support Add a layer to work-around an app side barrier issue for 'Baldur's Gate 3' Support the extension VK_EXT_depth_clamp_control Expose the extension VK_EXT_fragment_shader_interlock
- Loading branch information
Showing
72 changed files
with
3,824 additions
and
564 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,11 @@ function(identifyPackageType) | |
endif() | ||
|
||
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) | ||
set(CMAKE_INSTALL_PREFIX "/usr" CACHE PATH "cmake install prefix" FORCE) | ||
if(PACKAGE_NAME STREQUAL "vulkan-amdgpu") | ||
set(CMAKE_INSTALL_PREFIX "/opt/amdgpu" CACHE PATH "cmake install prefix" FORCE) | ||
else() | ||
set(CMAKE_INSTALL_PREFIX "/usr" CACHE PATH "cmake install prefix" FORCE) | ||
endif() | ||
if(TARGET_ARCHITECTURE_BITS EQUAL 64) | ||
if(PACKAGE_TYPE STREQUAL "DEB") | ||
set(CMAKE_INSTALL_LIBDIR "lib/x86_64-linux-gnu" CACHE PATH "cmake install libdir" FORCE) | ||
|
@@ -127,11 +131,22 @@ endfunction() | |
function(generateInstallTargets) | ||
install(FILES ${CMAKE_BINARY_DIR}/icd/amd_icd${TARGET_ARCHITECTURE_BITS}.json COMPONENT icd DESTINATION /etc/vulkan/icd.d) | ||
install(FILES ${CMAKE_BINARY_DIR}/icd/amd_icd${TARGET_ARCHITECTURE_BITS}.json COMPONENT icd DESTINATION /etc/vulkan/implicit_layer.d) | ||
if(EXISTS ${CMAKE_SOURCE_DIR}/LICENSE.txt) | ||
install(FILES ${CMAKE_SOURCE_DIR}/LICENSE.txt COMPONENT icd DESTINATION share/doc/${PACKAGE_NAME}) | ||
else() | ||
message(WARNING "LICENSE.txt is not found under ${CMAKE_SOURCE_DIR}, please put it there") | ||
|
||
if(PACKAGE_NAME STREQUAL "vulkan-amdgpu" | ||
) | ||
if(EXISTS ${CMAKE_SOURCE_DIR}/copyright) | ||
install(FILES ${CMAKE_SOURCE_DIR}/copyright COMPONENT icd DESTINATION share/doc/${PACKAGE_NAME}) | ||
else() | ||
message(WARNING "copyright is not found under ${CMAKE_SOURCE_DIR}, please put it there") | ||
endif() | ||
elseif(PACKAGE_NAME STREQUAL "amdvlk") | ||
if(EXISTS ${CMAKE_SOURCE_DIR}/LICENSE.txt) | ||
install(FILES ${CMAKE_SOURCE_DIR}/LICENSE.txt COMPONENT icd DESTINATION share/doc/${PACKAGE_NAME}) | ||
else() | ||
message(WARNING "LICENSE.txt is not found under ${CMAKE_SOURCE_DIR}, please put it there") | ||
endif() | ||
endif() | ||
|
||
if(PACKAGE_TYPE STREQUAL "DEB") | ||
if(EXISTS ${CMAKE_SOURCE_DIR}/changelog.Debian.gz) | ||
install(FILES ${CMAKE_SOURCE_DIR}/changelog.Debian.gz COMPONENT icd DESTINATION share/doc/${PACKAGE_NAME}) | ||
|
@@ -148,7 +163,14 @@ function(generatePackageTarget) | |
set(CPACK_PACKAGE_NAME "${PACKAGE_NAME}") | ||
set(CPACK_PACKAGE_VENDOR "Advanced Micro Devices (AMD)") | ||
set(CPACK_PACKAGE_CONTACT "[email protected]") | ||
set(CPACK_PACKAGE_HOMEPAGE_URL "https://github.com/GPUOpen-Drivers/AMDVLK") | ||
|
||
if(PACKAGE_NAME STREQUAL "vulkan-amdgpu" | ||
) | ||
set(CPACK_PACKAGE_HOMEPAGE_URL "http://www.amd.com") | ||
else() | ||
set(CPACK_PACKAGE_HOMEPAGE_URL "https://github.com/GPUOpen-Drivers/AMDVLK") | ||
endif() | ||
|
||
set(CPACK_PACKAGE_RELOCATABLE OFF) | ||
set(CPACK_GENERATOR "${PACKAGE_TYPE}") | ||
set(CPACK_COMPONENTS_ALL "icd") | ||
|
@@ -161,8 +183,13 @@ function(generatePackageTarget) | |
endif() | ||
set(CPACK_DEBIAN_PACKAGE_PRIORITY "optional") | ||
set(CPACK_DEBIAN_PACKAGE_SECTION "libs") | ||
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>=2.17), libgcc1 (>= 1:3.4), libstdc++6 (>= 5.2)") | ||
set(CPACK_DEBIAN_PACKAGE_RECOMMENDS "libssl1.1") | ||
if(PACKAGE_NAME STREQUAL "vulkan-amdgpu") | ||
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>=2.17), libgcc1 (>= 1:3.4), libstdc++6 (>= 5.2), libwayland-amdgpu-client0, amdgpu-core") | ||
set(CPACK_DEBIAN_PACKAGE_RECOMMENDS "libssl1.1") | ||
else() | ||
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>=2.17), libgcc1 (>= 1:3.4), libstdc++6 (>= 5.2)") | ||
set(CPACK_DEBIAN_PACKAGE_RECOMMENDS "libssl1.1") | ||
endif() | ||
if(PACKAGE_RELEASE) | ||
set(CPACK_PACKAGE_VERSION "${PACKAGE_VERSION}-${PACKAGE_RELEASE}") | ||
else() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,13 @@ | |
"file_format_version": "1.0.0", | ||
"ICD": { | ||
"library_path": "@AMDVLK_INSTALL_PATH@/amdvlk@[email protected]", | ||
"api_version": "1.3.295" | ||
"api_version": "1.3.297" | ||
}, | ||
"layer": { | ||
"name": "VK_LAYER_AMD_switchable_graphics_@ISABITS@", | ||
"type": "GLOBAL", | ||
"library_path": "@AMDVLK_INSTALL_PATH@/amdvlk@[email protected]", | ||
"api_version": "1.3.295", | ||
"api_version": "1.3.297", | ||
"implementation_version": "1", | ||
"description": "AMD switchable graphics layer", | ||
"functions": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.