diff options
author | José Fonseca <jfonseca@vmware.com> | 2013-10-23 17:17:07 +0100 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2013-10-23 17:17:07 +0100 |
commit | 117bf3fa441e347138b7d29fbe963a196202596a (patch) | |
tree | c9e8c945111890d792d0b466a3bc864c9fcd4988 /README.markdown | |
parent | fee4afbc7cddfab8491078dd3355e779e2e2d74b (diff) |
readme: Add a bit of text describing how to determine the graphics api used by a windows app.
Diffstat (limited to 'README.markdown')
-rw-r--r-- | README.markdown | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/README.markdown b/README.markdown index a80c9bec..cbfca9c4 100644 --- a/README.markdown +++ b/README.markdown @@ -179,6 +179,18 @@ On 64 bits Windows, you'll need to determine ether the application is a 64 bits or 32 bits. 32 bits applications will have a `*32` suffix in the _Image Name_ column of the _Processes_ tab of _Windows Task Manager_ window. +You also need to know which graphics API is being used. If you are unsure, the +simplest way to determine what API an application uses is to: + +* download and run [Process Explorer](http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx) + +* search and select the application's process in _Process Explorer_ + +* list the DLLs by pressing `Ctrl + D` + +* sort DLLs alphabetically, and look for the DLLs such as `opengl32.dll`, + `d3d9.dll`, `d3d10.dll`, etc. + Copy the appropriate `opengl32.dll`, `d3d8.dll`, or `d3d9.dll` from the wrappers directory to the directory with the application you want to trace. Then run the application as usual. |