mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-10 12:00:31 +00:00
Fix NULL being included in marker in D3D12 test
This commit is contained in:
@@ -177,7 +177,7 @@ RD_TEST(D3D12_Overlay_Test, D3D12GraphicsTest)
|
||||
cmd->DrawInstanced(3, 1, 6, 0);
|
||||
|
||||
// add a marker so we can easily locate this draw
|
||||
cmd->SetMarker(1, "Test Begin", sizeof("Test Begin"));
|
||||
cmd->SetMarker(1, "Test Begin", sizeof("Test Begin") - 1);
|
||||
|
||||
cmd->SetPipelineState(pipe);
|
||||
cmd->DrawInstanced(24, 1, 9, 0);
|
||||
|
||||
Reference in New Issue
Block a user