-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- NRI: replacing "QueueSemaphore" and "DeviceSemaphore" with "Fence" object - NRI: decoupling synchronization from submission of commands - NRI: added optional Streamline support - NRI: "CmdDispatchMeshTasks" got "Dispatch"-like parameters - NRI: "PhysicalDeviceGroup::description" changed back to char - NRI: fixed compilation of C-style interface on Linux - NRI: fixed potential out-of-bounds access in "GetPhysicalDevices" - VK: VK SDK updated to v1.3.239 - VK: NV-only extensions replaced with cross-vendor EXT extensions - VK: switched to VK v1.3, simplified initialization - VK: removed "error to warning" conversion for old errors - D3D12: fixed wrong PS_RESOURCE state usage in non-graphics queues - D3D12: expensive allocation in "CommandQueueD3D12::Submit" replaced with stack alloc - D3D11: fixed leaks caused by mixing "ptr" and "ComPtr" logic - D3D11: maximum frame latency is set based on number of buffers in SwapChain - fixes for Linux - Cmake improvements - updated dependencies - updated scripts - updated docs - refactoring
- Loading branch information
Showing
257 changed files
with
9,767 additions
and
11,681 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[submodule "External/vulkan"] | ||
path = External/vulkan | ||
url = https://github.com/KhronosGroup/Vulkan-Headers.git | ||
branch = sdk-1.3.236.0 | ||
branch = sdk-1.3.239.0 | ||
update = merge |
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 |
---|---|---|
|
@@ -10,5 +10,5 @@ chmod +x "4-Clean.sh" | |
mkdir -p "_Compiler" | ||
|
||
cd "_Compiler" | ||
cmake .. -A x64 | ||
cmake .. | ||
cd .. |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
@echo off | ||
|
||
cd "_Compiler" | ||
cmake --build . --config Release | ||
cmake --build . --config Debug | ||
cmake --build . --config Release -j 4 | ||
cmake --build . --config Debug -j 4 | ||
cd .. |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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.