Skip to content

Commit 2ce2a36

Browse files
MajorPainTheCactusLibretroAdmin
authored andcommitted
D3D12: remove debug logging from set_hdr_max_nits
1 parent 817a3a9 commit 2ce2a36

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

gfx/drivers/d3d12.c

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1888,12 +1888,6 @@ static void d3d12_render_overlay(d3d12_video_t *d3d12)
18881888
static void d3d12_set_hdr_max_nits(void* data, float max_nits)
18891889
{
18901890
d3d12_video_t *d3d12 = (d3d12_video_t*)data;
1891-
float old_nits = d3d12->hdr.max_output_nits;
1892-
1893-
RARCH_DBG("[D3D12] set_hdr_max_nits: %.1f -> %.1f%s\n",
1894-
old_nits, max_nits,
1895-
(old_nits >= 300.0f && max_nits < 300.0f) ? " *** CROSSING BELOW 300 ***" : "");
1896-
18971891
d3d12->hdr.max_output_nits = max_nits;
18981892
d3d12->hdr.ubo_values.max_nits = max_nits;
18991893

0 commit comments

Comments
 (0)