Просмотр исходного кода

graphics_cmdlists: Make LoadImage internally linked

Puts the TextureInfoWidget definition in the anonymous namespace as well,
as it's only used in the translation unit as well.
Lioncash 9 лет назад
Родитель
Сommit
dcb8113347
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      src/citra_qt/debugger/graphics_cmdlists.cpp

+ 2 - 0
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) {}