From 1ea80679307ff48bd13ea54e09ab0b217270990e Mon Sep 17 00:00:00 2001 From: Dusk-92 Date: Fri, 28 Aug 2026 22:46:48 +0200 Subject: [PATCH] DEBUG29 report full D3D state restore --- src/outline/outline.zig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/outline/outline.zig b/src/outline/outline.zig index 4a27ac4..381a05c 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} sb={d} odip={d} cache={d} pipe={d}/{d}", + "OutlineDBG shst={d} hooks={d}{d}{d} tgt={d} mdl={d} sb={d} rs={d} odip={d} cache={d} pipe={d}/{d}", .{ d3d9_hook.debug_shader_stage, @intFromBool(live.endscene_ours), @@ -182,6 +182,7 @@ pub fn outlineDebug(L: lua.State) callconv(.{ .x86_thiscall = .{} }) u32 { @intFromBool(tracker.debug_target_seen), @intFromBool(tracker.debug_target_model_seen), @intFromBool(d3d9_hook.debug_state_block_seen), + @intFromBool(d3d9_hook.debug_outer_state_restore_seen), @intFromBool(d3d9_hook.debug_outline_dip_seen), @intFromBool(d3d9_hook.debug_cached_draw_seen), @intFromBool(d3d9_hook.debug_pipeline_entered_seen),