Skip to content

Commit

Permalink
Merge branch 'internal_master_prm'
Browse files Browse the repository at this point in the history
  • Loading branch information
JaxLinAMD committed Sep 30, 2021
2 parents d8bb7de + a9ae5bd commit 9244bd3
Show file tree
Hide file tree
Showing 58 changed files with 2,238 additions and 1,942 deletions.
3 changes: 3 additions & 0 deletions cmake/XglOptions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ macro(xgl_options)

option(XGL_BUILD_NAVI23 "Build open source vulkan for Navi23" ON)

option(XGL_BUILD_TESTS "Build all tests?" OFF)

# Deprecated, use XGL_BUILD_TESTS instead.
option(XGL_BUILD_LIT "Build with Lit test?" OFF)

option(XGL_BUILD_CACHE_CREATOR "Build cache-creator tools?" OFF)
Expand Down
4 changes: 4 additions & 0 deletions cmake/XglOverrides.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,13 @@ macro(xgl_overrides_vkgc)
set(LLPC_CLIENT_INTERFACE_MAJOR_VERSION ${ICD_LLPC_CLIENT_MAJOR_VERSION} CACHE STRING "${PROJECT_NAME} override." FORCE)

if(ICD_BUILD_LLPC)
set(LLPC_BUILD_TESTS ${XGL_BUILD_TESTS} CACHE BOOL "${PROJECT_NAME} override." FORCE)

set(LLPC_BUILD_LIT ${XGL_BUILD_LIT} CACHE BOOL "${PROJECT_NAME} override." FORCE)

if(XGL_BUILD_LIT)
message(DEPRECATION "XGL_BUILD_LIT is deprecated, use XGL_BUILD_TESTS instead")
endif()
set(LLPC_BUILD_NAVI12 ${XGL_BUILD_NAVI12} CACHE BOOL "${PROJECT_NAME} override." FORCE)

set(LLPC_BUILD_NAVI22 ${XGL_BUILD_NAVI22} CACHE BOOL "${PROJECT_NAME} override." FORCE)
Expand Down
3 changes: 0 additions & 3 deletions icd/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,6 @@ target_sources(xgl PRIVATE
api/vk_descriptor_update_template.cpp
api/appopt/barrier_filter_layer.cpp
api/appopt/strange_brigade_layer.cpp
api/appopt/async_layer.cpp
api/appopt/async_shader_module.cpp
api/appopt/async_partial_pipeline.cpp
api/appopt/g_shader_profile.cpp
api/render_state_cache.cpp
api/renderpass/renderpass_builder.cpp
Expand Down
4 changes: 2 additions & 2 deletions icd/Loader/LunarG/Lnx/amd-icd.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"file_format_version": "1.0.0",
"ICD": {
"library_path": "@AMDVLK_INSTALL_PATH@/amdvlk@[email protected]",
"api_version": "1.2.188"
"api_version": "1.2.191"
},
"layer": {
"name": "VK_LAYER_AMD_switchable_graphics_@ISABITS@",
"type": "GLOBAL",
"library_path": "@AMDVLK_INSTALL_PATH@/amdvlk@[email protected]",
"api_version": "1.2.188",
"api_version": "1.2.191",
"implementation_version": "1",
"description": "AMD switchable graphics layer",
"functions": {
Expand Down
216 changes: 0 additions & 216 deletions icd/api/appopt/async_layer.cpp

This file was deleted.

129 changes: 0 additions & 129 deletions icd/api/appopt/async_layer.h

This file was deleted.

Loading

0 comments on commit 9244bd3

Please sign in to comment.