BartmanAbyss

Results 15 issues of BartmanAbyss

Support viewing them one 1 timeline to be able to reason about events that are split between multiple frames.

See this example: ``` 00004a30 00000024 00004650 FDE cie=00004650 pc=00006ba4..00006c1c LOC CFA r2 r10 r13 ra 00006ba4 r15+4 u u u c-4 00006ba8 r13+8 u u c-8 c-4 00006bac r13+8...

I've been using DIA previously to get all function symbols of a .exe, and just noticed that while DIA spits out functions symbols for FastLink EXEs, raw_pdb just gives up....

`ffx_fsr2.cpp` line 659, 660: ``` context->constants.motionVectorJitterCancellation[0] = (context->previousJitterOffset[0] - context->constants.jitterOffset[0]) / motionVectorsTargetSize[0]; context->constants.motionVectorJitterCancellation[1] = (context->previousJitterOffset[1] - context->constants.jitterOffset[1]) / motionVectorsTargetSize[1]; ``` should be ``` context->constants.motionVectorJitterCancellation[0] = (context->previousJitterOffset[0] - context->constants.jitterOffset[0]) / motionVectorsTargetSize[0]...

``` initializationParameters.flags = FFX_FSR2_ENABLE_DEPTH_INVERTED | FFX_FSR2_ENABLE_AUTO_EXPOSURE; ``` should be ``` initializationParameters.flags = FFX_FSR2_ENABLE_AUTO_EXPOSURE; if (m_bInvertedDepth) { initializationParameters.flags |= FFX_FSR2_ENABLE_DEPTH_INVERTED; } ```

File: `src/ffx-fsr2-api/shaders/ffx_fsr2_callbacks_glsl.h`, lines 247 and 250, specify `r32f` as texture format, however this should be `r16f`. This caused the SPD pass not working on a well-known console platform. Changing this...

So, this may be totally my fault, I just copied the basic example into my preact-based project, and it always crashes in `DockTabs.tsx` ``` function isPopupDiv(r: HTMLDivElement): boolean { return...

to use inline preact-devtools I have been trying to use the preact-devtools npm, however that seems quite a bit outdated (about 3 years). I managed to get it running via...

enhancement

`stackframecnt` and `stackframecntsuper` are not checked against `MAX_STACKFRAMES`. Had a case where it overflowed, corrupted the heap and crashed WinUAE.

[mm2.zip](https://github.com/cnvogelg/amitools/files/11966708/mm2.zip) ``` barto@barto10:~$ .local/bin/hunktool info /mnt/c/Users/bwodok/Downloads/mm2 -v /mnt/c/Users/bwodok/Downloads/mm2 (0.0005s) hunks: [HEADER,CODE,ABSRELOC32,END,DATA,ABSRELOC32,END,BSS,END,OVERLAY,HEADER,CODE,END,BREAK] type: Traceback (most recent call last): File ".local/bin/hunktool", line 8, in sys.exit(main()) File "/home/barto/.local/lib/python3.8/site-packages/amitools/tools/hunktool.py", line 315, in main res...

Feature