Skip to content

Commit 6684984

Browse files
committed
Examples: DirectX12: Reduced number of frame in flight from 3 to 2 in provided example, to reduce latency.
1 parent 0e21bde commit 6684984

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docs/CHANGELOG.txt

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ Breaking changes:
4444
Other changes:
4545

4646
- ImDrawList: texture baked storage for thick line reduced from ~64x64 to ~32x32. (#3245)
47+
- Examples: DirectX12: Reduced number of frame in flight from 3 to 2 in
48+
provided example, to reduce latency.
4749
- Backends: DirectX12: Texture upload use the command queue provided in
4850
ImGui_ImplDX12_InitInfo instead of creating its own.
4951

examples/example_win32_directx12/main.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
#endif
2424

2525
// Config for example app
26-
static const int APP_NUM_FRAMES_IN_FLIGHT = 3;
27-
static const int APP_NUM_BACK_BUFFERS = 3;
26+
static const int APP_NUM_FRAMES_IN_FLIGHT = 2;
27+
static const int APP_NUM_BACK_BUFFERS = 2;
2828
static const int APP_SRV_HEAP_SIZE = 64;
2929

3030
struct FrameContext

0 commit comments

Comments
 (0)