Reputation: 1667
Is there a debugger (free if possible) that can visualize image buffers during debugging sessions. Something like:
Upvotes: 4
Views: 403
Reputation: 590
If you are using gdb to debug your program, you can call your own(or some other library functions) that can visualize the image buffer for you(possibly in a separate window) from the gdb prompt once you reach a breakpoint.
Upvotes: 2