summaryrefslogtreecommitdiff
path: root/debug
diff options
context:
space:
mode:
authorWatson Wheeler <git@tazy.dev>2026-06-30 21:14:48 +1000
committerWatson Wheeler <git@tazy.dev>2026-06-30 21:16:04 +1000
commitee8dc71be4e71780d96627bc37cec446927b8463 (patch)
tree7bb9762df024961733ee880984b15dac5e7c5408 /debug
parent80eace78392ba798dd34a284f6fcb412434cdd47 (diff)
refactor(gdb): move .gdbinit to scripts
Diffstat (limited to 'debug')
-rw-r--r--debug/.gdbinit37
1 files changed, 0 insertions, 37 deletions
diff --git a/debug/.gdbinit b/debug/.gdbinit
deleted file mode 100644
index 345b33e..0000000
--- a/debug/.gdbinit
+++ /dev/null
@@ -1,37 +0,0 @@
-set pagination off
-set confirm off
-set print pretty on
-set print array on
-
-set breakpoint pending on
-
-break ff_open_png
-break ff_png_isvalid
-break ff_png_dispatch
-break ff_png_header_handler
-break ff_png_data_handler
-break ff_png_end_handler
-
-define ff
- run
-end
-
-define st
- info locals
- info args
-end
-
-define ihdr
- print png_ctx->width
- print png_ctx->height
- print png_ctx->bit_depth
- print png_ctx->color_type
-end
-
-define ctx
- print *ctx
-end
-
-define png
- print *png_ctx
-end