From 10736d63a4cfe72e3d157ef51d0e546a5dc29037 Mon Sep 17 00:00:00 2001 From: Alec Miller Date: Mon, 21 Oct 2024 20:11:52 -0700 Subject: [PATCH] kram - add quatf and update comment in lldb formatter simdk.py --- scripts/simdk.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/simdk.py b/scripts/simdk.py index 48481db..931d77f 100755 --- a/scripts/simdk.py +++ b/scripts/simdk.py @@ -1,5 +1,5 @@ # add this to your ~/.lldbinit with -# command script import ~/yourpath/kram/scripts/vectormath_lldbinit.py +# command script import ~/yourpath/kram/scripts/simdk.py import lldb @@ -159,6 +159,8 @@ def __lldb_init_module(debugger, internal_dict): debugger.HandleCommand("type summary add -F simdk.float3x3_summary simdk::float3x3") debugger.HandleCommand("type summary add -F simdk.float2x2_summary simdk::float2x2") + debugger.HandleCommand("type summary add -F simdk.float4_summary simdk::quatf") + # double234 debugger.HandleCommand("type summary add -F simdk.float2_summary double2a") debugger.HandleCommand("type summary add -F simdk.float3_summary double3a")