diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-07-09 21:27:27 -0400 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-07-14 12:00:30 -0400 |
commit | 913b7a6872a67a0dd689bb19bc4ecfef7fb9cdcd (patch) | |
tree | fa1dbdbdbe4f5e4e0eeb4b689bef0f1ff0ae780d /src/video_core/macro_interpreter.cpp | |
parent | a9943222f2afce6255b635091099925b3e451c8b (diff) |
GPU: Add a microprofile for macro interpreter
Diffstat (limited to 'src/video_core/macro_interpreter.cpp')
-rw-r--r-- | src/video_core/macro_interpreter.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/macro_interpreter.cpp b/src/video_core/macro_interpreter.cpp index c766ed692b..9f59a2dc1f 100644 --- a/src/video_core/macro_interpreter.cpp +++ b/src/video_core/macro_interpreter.cpp @@ -4,14 +4,18 @@ #include "common/assert.h" #include "common/logging/log.h" +#include "common/microprofile.h" #include "video_core/engines/maxwell_3d.h" #include "video_core/macro_interpreter.h" +MICROPROFILE_DEFINE(MacroInterp, "GPU", "Execute macro interpreter", MP_RGB(128, 128, 192)); + namespace Tegra { MacroInterpreter::MacroInterpreter(Engines::Maxwell3D& maxwell3d) : maxwell3d(maxwell3d) {} void MacroInterpreter::Execute(u32 offset, std::vector<u32> parameters) { + MICROPROFILE_SCOPE(MacroInterp); Reset(); registers[1] = parameters[0]; this->parameters = std::move(parameters); |