Home > OS >  Visual Studio 2019 Can't Use GPU Usage
Visual Studio 2019 Can't Use GPU Usage

Time:10-19

I'm working on a c# project with the library SharpDX to render objects from binary files. I want to profile the GPU usage since I have problems with the render time and the FPS. For some reason, I can't find the option in the profiler of Visual Studio 2019 Pro. I searched on google, and I can't find anything. Also, I'm using the trial version. Is there a restriction with the trial version?

enter image description here

Thank you

CodePudding user response:

You need to install the 'Graphics debugger and GPU profiler for DirectX' component through the Visual Studio Installer:

enter image description here

Afterwards the profiler tools will include the 'GPU usage' option:

enter image description here

  • Related