summaryrefslogtreecommitdiff
path: root/src/citra_qt/debugger/graphics_vertex_shader.cpp
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2015-08-24 18:30:11 -0700
committerGravatar Yuri Kunde Schlesner2015-08-24 18:30:11 -0700
commitac0104b8b0584023cfbd7a4800f1ca1db890188f (patch)
treea1651d48113413e2de1e6e309362511b1ff7ffa8 /src/citra_qt/debugger/graphics_vertex_shader.cpp
parentMerge pull request #1063 from Subv/hw_renderer_debug_fb (diff)
parentIntegrate the MicroProfile profiling library (diff)
downloadyuzu-ac0104b8b0584023cfbd7a4800f1ca1db890188f.tar.gz
yuzu-ac0104b8b0584023cfbd7a4800f1ca1db890188f.tar.xz
yuzu-ac0104b8b0584023cfbd7a4800f1ca1db890188f.zip
Merge pull request #1048 from yuriks/microprofile
Integrate the MicroProfile profiling library
Diffstat (limited to 'src/citra_qt/debugger/graphics_vertex_shader.cpp')
-rw-r--r--src/citra_qt/debugger/graphics_vertex_shader.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/graphics_vertex_shader.cpp b/src/citra_qt/debugger/graphics_vertex_shader.cpp
index 0c17edee0..1d9a00e89 100644
--- a/src/citra_qt/debugger/graphics_vertex_shader.cpp
+++ b/src/citra_qt/debugger/graphics_vertex_shader.cpp
@@ -15,6 +15,8 @@
15#include <QSpinBox> 15#include <QSpinBox>
16#include <QTreeView> 16#include <QTreeView>
17 17
18#include "citra_qt/util/util.h"
19
18#include "video_core/shader/shader.h" 20#include "video_core/shader/shader.h"
19 21
20#include "graphics_vertex_shader.h" 22#include "graphics_vertex_shader.h"
@@ -245,7 +247,7 @@ QVariant GraphicsVertexShaderModel::data(const QModelIndex& index, int role) con
245 } 247 }
246 248
247 case Qt::FontRole: 249 case Qt::FontRole:
248 return QFont("monospace"); 250 return GetMonospaceFont();
249 251
250 case Qt::BackgroundRole: 252 case Qt::BackgroundRole:
251 // Highlight instructions which have no debug data associated to them 253 // Highlight instructions which have no debug data associated to them