Joshua-Ashton / dxup

A d3d9 and d3d10 to d3d11 translation layer.
zlib License
259 stars 26 forks source link

Debugging #27

Closed pchome closed 5 years ago

pchome commented 5 years ago

In case someone interested in.

VS Code example (dxup/.vscode/launch.json):

{
    "version": "0.2.0",
    "configurations": [

        {
            "name": "Debug",
            "type": "gdb",
            "request": "attach",
            "executable": "/usr/lib/wine-vanilla-3.21/bin/wine",
            "cwd": "${workspaceRoot}",
            "target": ":2345",
            "remote": true,
            "valuesFormatting": "prettyPrinters"
        }
    ]
}

Note:

Joshua-Ashton commented 5 years ago

This isn't an issue with dxup -- this is more suited for a readme file in your fork.