summaryrefslogtreecommitdiffstats
path: root/src/citra_qt
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-12-11 01:18:02 +0100
committerLioncash <mathew1800@gmail.com>2016-12-11 02:00:40 +0100
commitdcb8113347e2102b75d2409544798eb6d7ee0fd1 (patch)
tree512796a2528dedde4a66e68d46f81c55f2719b0b /src/citra_qt
parentAdd all services to the Service namespace (diff)
downloadyuzu-dcb8113347e2102b75d2409544798eb6d7ee0fd1.tar
yuzu-dcb8113347e2102b75d2409544798eb6d7ee0fd1.tar.gz
yuzu-dcb8113347e2102b75d2409544798eb6d7ee0fd1.tar.bz2
yuzu-dcb8113347e2102b75d2409544798eb6d7ee0fd1.tar.lz
yuzu-dcb8113347e2102b75d2409544798eb6d7ee0fd1.tar.xz
yuzu-dcb8113347e2102b75d2409544798eb6d7ee0fd1.tar.zst
yuzu-dcb8113347e2102b75d2409544798eb6d7ee0fd1.zip
Diffstat (limited to 'src/citra_qt')
-rw-r--r--src/citra_qt/debugger/graphics_cmdlists.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/citra_qt/debugger/graphics_cmdlists.cpp b/src/citra_qt/debugger/graphics_cmdlists.cpp
index 8a784d108..cc49b471a 100644
--- a/src/citra_qt/debugger/graphics_cmdlists.cpp
+++ b/src/citra_qt/debugger/graphics_cmdlists.cpp
@@ -21,6 +21,7 @@
#include "video_core/pica.h"
#include "video_core/pica_state.h"
+namespace {
QImage LoadTexture(u8* src, const Pica::DebugUtils::TextureInfo& info) {
QImage decoded_image(info.width, info.height, QImage::Format_ARGB32);
for (int y = 0; y < info.height; ++y) {
@@ -47,6 +48,7 @@ public:
setLayout(layout);
}
};
+} // Anonymous namespace
GPUCommandListModel::GPUCommandListModel(QObject* parent) : QAbstractListModel(parent) {}