src: Move certain headers in common

This commit is contained in:
GPUCode 2023-11-05 13:41:10 +02:00
parent 6e28ac711f
commit 17aefc1aef
73 changed files with 98 additions and 106 deletions

View file

@ -2,7 +2,7 @@
#include <xxh3.h>
#include "Emulator/Util/singleton.h"
#include "common/singleton.h"
void* GPU::memoryCreateObj(u64 submit_id, HLE::Libs::Graphics::GraphicCtx* ctx, void* todo /*CommandBuffer?*/, u64 virtual_addr, u64 size,
const GPUObject& info) {

View file

@ -1,7 +1,7 @@
#pragma once
#include <core/PS4/HLE/Graphics/graphics_ctx.h>
#include <types.h>
#include "common/types.h"
#include <mutex>
#include <vector>

View file

@ -1,5 +1,5 @@
#include "tile_manager.h"
#include "Emulator/Util/singleton.h"
#include "common/singleton.h"
#include <mutex>
namespace GPU {

View file

@ -1,6 +1,6 @@
#pragma once
#include "types.h"
#include "common/types.h"
namespace GPU {

View file

@ -1,8 +1,8 @@
#include "video_out_buffer.h"
#include <Util/log.h>
#include "common/log.h"
#include "debug.h"
#include "common/debug.h"
#include <vulkan_util.h>
#include "tile_manager.h"

View file

@ -1,6 +1,6 @@
#pragma once
#include <types.h>
#include "common/types.h"
#include "gpu_memory.h"