Skip to content

Commit 3d900ed

Browse files
PuPuHXocornut
authored andcommitted
Examples: Win32+DirectX12: Fixed ExampleDescriptorHeapAllocator overflow free index.
Amend 40b2286.
1 parent 6916f93 commit 3d900ed

File tree

1 file changed

+1
-1
lines changed
  • examples/example_win32_directx12

1 file changed

+1
-1
lines changed

examples/example_win32_directx12/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ struct ExampleDescriptorHeapAllocator
5454
HeapHandleIncrement = device->GetDescriptorHandleIncrementSize(HeapType);
5555
FreeIndices.reserve((int)desc.NumDescriptors);
5656
for (int n = desc.NumDescriptors; n > 0; n--)
57-
FreeIndices.push_back(n);
57+
FreeIndices.push_back(n - 1);
5858
}
5959
void Destroy()
6060
{

0 commit comments

Comments
 (0)