Hey, this is a known crash code. -1073741819 is 0xC0000005 (an access violation on Windows). A few things to try:
Turn off hardware acceleration. Open Cursor, press Ctrl + Shift + P, type Configure Runtime Arguments, add "disable-hardware-acceleration": true in the JSON file, then restart Cursor.
Update your GPU drivers. Outdated graphics drivers often cause renderer crashes like this.
Test without extensions. Run cursor --disable-extensions from the command line to rule out a broken extension.
Also, what GPU do you have, and do other apps crash in a similar way (Chrome tabs, etc.)?
*// Use software rendering instead of hardware accelerated rendering.*
*// This can help in cases where you see rendering issues in VS Code.*
*// "disable-hardware-acceleration": true,*
*// Allows to disable crash reporting.*
*// Should restart the app if the value is changed.*
"enable-crash-reporter": true,
"disable-hardware-acceleration": true,
*// Unique id used for correlating crash reports sent from this instance.*
*// Do not edit this value.*
"crash-reporter-id": "1967643b-6877-40ed-b07f-db74199f578c"