mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-25 04:02:42 +01:00
More Header cleanup
This commit is contained in:
parent
e2303f3378
commit
a3eb5c2d63
@ -1,4 +1,4 @@
|
||||
#pragma once
|
||||
#pragma once
|
||||
|
||||
#include "types.h"
|
||||
#include "util/atomic.hpp"
|
||||
|
@ -4,6 +4,7 @@
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
#include "Emu/Io/interception.h"
|
||||
#include "Emu/RSX/Overlays/overlay_osk.h"
|
||||
#include "Emu/IdManager.h"
|
||||
|
||||
#include "cellSysutil.h"
|
||||
#include "cellOskDialog.h"
|
||||
@ -11,6 +12,8 @@
|
||||
|
||||
#include "util/init_mutex.hpp"
|
||||
|
||||
#include <thread>
|
||||
|
||||
LOG_CHANNEL(cellOskDialog);
|
||||
|
||||
template<>
|
||||
|
@ -1,6 +1,7 @@
|
||||
#include "stdafx.h"
|
||||
#include "rsx_replay.h"
|
||||
|
||||
#include "Emu/Cell/ErrorCodes.h"
|
||||
#include "Emu/Cell/lv2/sys_rsx.h"
|
||||
#include "Emu/Cell/lv2/sys_memory.h"
|
||||
#include "Emu/RSX/RSXThread.h"
|
||||
|
@ -1,8 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include "Emu/CPU/CPUThread.h"
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
#include "Emu/Cell/lv2/sys_sync.h"
|
||||
#include "Emu/RSX/rsx_methods.h"
|
||||
|
||||
#include <cereal/types/vector.hpp>
|
||||
|
@ -1,5 +1,4 @@
|
||||
#pragma once
|
||||
#include "Utilities/StrFmt.h"
|
||||
|
||||
namespace program_common
|
||||
{
|
||||
|
@ -1,10 +1,8 @@
|
||||
#pragma once
|
||||
|
||||
#include "Emu/Memory/vm.h"
|
||||
#include "surface_utils.h"
|
||||
#include "../GCM.h"
|
||||
#include "../gcm_enums.h"
|
||||
#include "../rsx_utils.h"
|
||||
#include "Utilities/span.h"
|
||||
#include <list>
|
||||
|
||||
namespace rsx
|
||||
|
@ -5,6 +5,7 @@
|
||||
#include "Utilities/address_range.h"
|
||||
#include "TextureUtils.h"
|
||||
#include "../rsx_utils.h"
|
||||
#include "Emu/Memory/vm.h"
|
||||
|
||||
#define ENABLE_SURFACE_CACHE_DEBUG 0
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
#pragma once
|
||||
#pragma once
|
||||
|
||||
#include "Emu/Memory/vm_ptr.h"
|
||||
#include "gcm_enums.h"
|
||||
#include "gcm_printing.h"
|
||||
#include "util/atomic.hpp"
|
||||
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
#include "shader_loading_dialog_native.h"
|
||||
#include "../overlay_message_dialog.h"
|
||||
#include "../../GSRender.h"
|
||||
#include "Emu/Cell/ErrorCodes.h"
|
||||
|
||||
namespace rsx
|
||||
{
|
||||
|
@ -3,6 +3,10 @@
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/system_config.h"
|
||||
#include "Emu/Cell/ErrorCodes.h"
|
||||
#include "Emu/IdManager.h"
|
||||
#include "Utilities/Thread.h"
|
||||
|
||||
#include <thread>
|
||||
|
||||
namespace rsx
|
||||
{
|
||||
|
@ -1,5 +1,6 @@
|
||||
#include "stdafx.h"
|
||||
#include "overlay_trophy_notification.h"
|
||||
#include "Emu/Cell/ErrorCodes.h"
|
||||
#include "Emu/RSX/RSXThread.h"
|
||||
|
||||
namespace rsx
|
||||
|
@ -2,14 +2,13 @@
|
||||
#include "overlay_animation.h"
|
||||
#include "overlay_controls.h"
|
||||
|
||||
#include "../../../Utilities/Thread.h"
|
||||
#include "Emu/Memory/vm.h"
|
||||
#include "Emu/IdManager.h"
|
||||
|
||||
#include "Utilities/mutex.h"
|
||||
#include "Utilities/Timer.h"
|
||||
|
||||
#include <list>
|
||||
#include <thread>
|
||||
#include <mutex>
|
||||
|
||||
// Utils
|
||||
extern u64 get_system_time();
|
||||
|
@ -3,6 +3,7 @@
|
||||
#include "RSXFIFO.h"
|
||||
#include "RSXThread.h"
|
||||
#include "Capture/rsx_capture.h"
|
||||
#include "Emu/Cell/lv2/sys_rsx.h"
|
||||
|
||||
namespace rsx
|
||||
{
|
||||
@ -14,6 +15,11 @@ namespace rsx
|
||||
m_iotable = &pctrl->iomap_table;
|
||||
}
|
||||
|
||||
void FIFO_control::sync_get()
|
||||
{
|
||||
m_ctrl->get.release(m_internal_get);
|
||||
}
|
||||
|
||||
void FIFO_control::inc_get(bool wait)
|
||||
{
|
||||
m_internal_get += 4;
|
||||
|
@ -1,10 +1,9 @@
|
||||
#pragma once
|
||||
|
||||
#include "Utilities/types.h"
|
||||
#include "util/atomic.hpp"
|
||||
#include "Emu/RSX/gcm_enums.h"
|
||||
|
||||
#include "rsx_utils.h"
|
||||
#include "Emu/Cell/lv2/sys_rsx.h"
|
||||
struct RsxDmaControl;
|
||||
|
||||
namespace rsx
|
||||
{
|
||||
@ -131,7 +130,7 @@ namespace rsx
|
||||
|
||||
u32 get_pos() const { return m_internal_get; }
|
||||
u32 last_cmd() const { return m_cmd; }
|
||||
void sync_get() { m_ctrl->get.release(m_internal_get); }
|
||||
void sync_get();
|
||||
u32 get_current_arg_ptr() const { return m_args_ptr; };
|
||||
u32 get_remaining_args_count() const { return m_remaining_commands; }
|
||||
void inc_get(bool wait);
|
||||
|
@ -1,13 +1,9 @@
|
||||
#pragma once
|
||||
|
||||
#include "Utilities/types.h"
|
||||
#include "Utilities/lockless.h"
|
||||
#include "Utilities/Thread.h"
|
||||
#include "Utilities/address_range.h"
|
||||
#include "gcm_enums.h"
|
||||
|
||||
#include <vector>
|
||||
#include <thread>
|
||||
|
||||
namespace rsx
|
||||
{
|
||||
|
@ -9,6 +9,8 @@
|
||||
|
||||
#include "../Overlays/overlays.h"
|
||||
|
||||
#include "Utilities/hash.h"
|
||||
|
||||
#define VK_OVERLAY_MAX_DRAW_CALLS 1024
|
||||
|
||||
namespace vk
|
||||
|
@ -3,10 +3,7 @@
|
||||
#include "stdafx.h"
|
||||
#include "VKHelpers.h"
|
||||
#include "VKFormats.h"
|
||||
#include "../GCM.h"
|
||||
#include "../Common/surface_store.h"
|
||||
#include "../Common/TextureUtils.h"
|
||||
#include "../Common/texture_cache_utils.h"
|
||||
|
||||
namespace vk
|
||||
{
|
||||
|
@ -1,8 +1,6 @@
|
||||
#include "stdafx.h"
|
||||
#include "VKHelpers.h"
|
||||
#include "../GCM.h"
|
||||
#include "../RSXThread.h"
|
||||
#include "../RSXTexture.h"
|
||||
#include "../rsx_utils.h"
|
||||
#include "VKFormats.h"
|
||||
#include "VKCompute.h"
|
||||
|
@ -1,7 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include "gcm_enums.h"
|
||||
#include "rsx_decode.h"
|
||||
|
||||
#include "Utilities/types.h"
|
||||
#include "rsx_utils.h"
|
||||
|
@ -2,7 +2,6 @@
|
||||
|
||||
#include <QMessageBox>
|
||||
|
||||
#include "Utilities/Config.h"
|
||||
#include "Utilities/Thread.h"
|
||||
|
||||
#if defined(_WIN32) || defined(HAVE_VULKAN)
|
||||
|
@ -4,6 +4,7 @@
|
||||
#include "memory_viewer_panel.h"
|
||||
#include "table_item_delegate.h"
|
||||
#include "Emu/RSX/RSXThread.h"
|
||||
#include "Emu/RSX/gcm_printing.h"
|
||||
|
||||
#include <QHBoxLayout>
|
||||
#include <QHeaderView>
|
||||
|
@ -1,10 +1,12 @@
|
||||
#include "save_data_dialog.h"
|
||||
#include "save_data_list_dialog.h"
|
||||
|
||||
#include <Emu/System.h>
|
||||
#include <Emu/IdManager.h>
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/IdManager.h"
|
||||
#include "Emu/Io/interception.h"
|
||||
#include <Emu/RSX/Overlays/overlay_save_dialog.h>
|
||||
#include "Emu/RSX/Overlays/overlay_save_dialog.h"
|
||||
|
||||
#include "Utilities/Thread.h"
|
||||
|
||||
s32 save_data_dialog::ShowSaveDataList(std::vector<SaveDataEntry>& save_entries, s32 focused, u32 op, vm::ptr<CellSaveDataListSet> listSet)
|
||||
{
|
||||
|
@ -1,6 +1,7 @@
|
||||
#include "trophy_notification_helper.h"
|
||||
#include "trophy_notification_frame.h"
|
||||
|
||||
#include "../Emu/IdManager.h"
|
||||
#include "../Emu/System.h"
|
||||
#include "../Emu/RSX/Overlays/overlay_trophy_notification.h"
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
#include "vfs_dialog_tab.h"
|
||||
#include "Utilities/Config.h"
|
||||
|
||||
#include <QFileDialog>
|
||||
#include <QCoreApplication>
|
||||
|
@ -1,7 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include "stdafx.h"
|
||||
#include "Utilities/Config.h"
|
||||
|
||||
#include "gui_settings.h"
|
||||
#include "emu_settings.h"
|
||||
@ -10,6 +9,11 @@
|
||||
#include <QListWidget>
|
||||
#include <QLabel>
|
||||
|
||||
namespace cfg
|
||||
{
|
||||
class string;
|
||||
}
|
||||
|
||||
struct vfs_settings_info
|
||||
{
|
||||
QString name; // name of tab
|
||||
|
Loading…
Reference in New Issue
Block a user