From d5a3a0e92531f807216bdac588e2f769f0b6e2e3 Mon Sep 17 00:00:00 2001 From: Dusk-92 Date: Fri, 28 Aug 2026 22:41:08 +0200 Subject: [PATCH] DEBUG28 report D3D state-block capture --- src/outline/outline.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/outline/outline.zig b/src/outline/outline.zig index fce3b97..4a27ac4 100644 --- a/src/outline/outline.zig +++ b/src/outline/outline.zig @@ -173,7 +173,7 @@ pub fn outlineDebug(L: lua.State) callconv(.{ .x86_thiscall = .{} }) u32 { var buf: [336]u8 = undefined; const msg = std.fmt.bufPrintZ( &buf, - "OutlineDBG shst={d} hooks={d}{d}{d} tgt={d} mdl={d} tr={d} odip={d} cache={d} pipe={d}/{d}", + "OutlineDBG shst={d} hooks={d}{d}{d} tgt={d} mdl={d} sb={d} odip={d} cache={d} pipe={d}/{d}", .{ d3d9_hook.debug_shader_stage, @intFromBool(live.endscene_ours), @@ -181,7 +181,7 @@ pub fn outlineDebug(L: lua.State) callconv(.{ .x86_thiscall = .{} }) u32 { @intFromBool(live.reset_ours), @intFromBool(tracker.debug_target_seen), @intFromBool(tracker.debug_target_model_seen), - @intFromBool(d3d9_hook.debug_translucent_skipped_seen), + @intFromBool(d3d9_hook.debug_state_block_seen), @intFromBool(d3d9_hook.debug_outline_dip_seen), @intFromBool(d3d9_hook.debug_cached_draw_seen), @intFromBool(d3d9_hook.debug_pipeline_entered_seen),