Capturing logfiles is the starting point to using RenderDoc. Although the basic use is very simple, there are various customisations and more advanced uses. More information on these can be found in the details of the window.
Capturing logs The basic process of capturing logs is fairly straightforward. Opening the capture window from the menus via File -> Capture Log, the typical capture setup simply requires you to enter the executable location. By default the working directory remains empty and defaults to the directory that contains the executable location. Capturing a logfile specifying its executable path and command line. Likewise, the default options generally work well for most situations, however there are a few common options to customise: Allow Fullscreen/Allow VSync aid in debugging by preventing the app from switching into fullscreen (or vsynced) display modes, which makes them easier to attach to from a debugger on the same computer. Seconds attach delay causes RenderDoc to pause for a certain number of seconds after launching the process to allow you to attach in the debugger - so that the debugger can be present to catch any problems from the beginning of the application, in case there is an issue very early in initialisation. Collect callstacks allows you to get callstacks at the site of each API. There are more details available in .
Attaching to a Process It is possible to attach to an already running process. By selecting the "Attach to Process" entry in the File menu, the capture dialog will modify to list the running processes rather than asking for an executable and command line parameters. This can be useful if launching your application from a single exe is non-trivial and it's easier to attach to the process after it has been launched. Attaching to a selected existing process. The important thing to note about attaching is that RenderDoc can only attach to processes that have not initialised or used the target API. If this is the case RenderDoc can insert its hooks before any use of the API and work as normal. If the API has been used or initialised the results are undefined and likely RenderDoc will simply not function as it's too late to hook in. If RenderDoc is not running as administrator, it cannot attach to processes that are running with elevated permissions. In this case you can either run RenderDoc as administrator (not recommended unless necessary), or re-run the process as the normal user running RenderDoc.
Capture setting files Commonly in development, the capture parameters don't change. In fact most likely the same application or couple of applications are launched in exactly the same way repeatedly as development iterates. To make this process easier RenderDoc supports saving and loading configuration sets to a file. While on the capture dialog, click 'Save' to save to a .cap file which contains both the executable, working directory and command line - as well as the options that are selected. This .cap file can be executed when RenderDoc's file associations are set up, and RenderDoc will load this file and present you with the capture dialog on startup. You can also use the "Auto start" option - when this option is enabled then a .cap file will immediately launch the program when it is loaded. This can allow you to configure a .cap which will open RenderDoc and launch the target application with the pre-configured settings in one click. If you wish to disable this, just uncheck the option and re-save to the same .cap file.