Skip to content

Commit

Permalink
x86 compile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
baldurk committed Dec 6, 2024
1 parent 70c6dd3 commit 87547d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renderdoc/driver/d3d12/d3d12_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ void D3D12RTManager::VerifyRecord(const uint64_t recordSize, byte *wrappedRecord
// be constant data or just padding
memcpy(record.data() + D3D12_SHADER_IDENTIFIER_SIZE_IN_BYTES,
wrappedRecord + D3D12_SHADER_IDENTIFIER_SIZE_IN_BYTES,
recordSize - D3D12_SHADER_IDENTIFIER_SIZE_IN_BYTES);
size_t(recordSize - D3D12_SHADER_IDENTIFIER_SIZE_IN_BYTES));

if(localIdx != 0xffff)
{
Expand Down

0 comments on commit 87547d6

Please sign in to comment.