File tree 2 files changed +4
-2
lines changed
examples/example_win32_directx12
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,8 @@ Breaking changes:
44
44
Other changes:
45
45
46
46
- 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.
47
49
- Backends: DirectX12: Texture upload use the command queue provided in
48
50
ImGui_ImplDX12_InitInfo instead of creating its own.
49
51
Original file line number Diff line number Diff line change 23
23
#endif
24
24
25
25
// 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 ;
28
28
static const int APP_SRV_HEAP_SIZE = 64 ;
29
29
30
30
struct FrameContext
You can’t perform that action at this time.
0 commit comments