Buildfixes

This commit is contained in:
Henrik Rydgård 2024-12-18 12:28:05 +01:00
parent 3e198c53b2
commit 45cf6d423e
9 changed files with 17 additions and 0 deletions

View file

@ -6,6 +6,8 @@
// of defines that translate to either NEON or SSE. It would be possible to write quite a lot of
// our various color conversion functions and so on in a pretty generic manner.
#pragma once
#include "ppsspp_config.h"
#include "stdint.h"

View file

@ -19,6 +19,8 @@
#include <cstdint>
#include <mutex>
#include <set>
#include <condition_variable>
#include "Common/System/System.h"
#include "Common/Profiler/Profiler.h"

View file

@ -18,6 +18,7 @@
#include <atomic>
#include <cstring>
#include <mutex>
#include <condition_variable>
#include <thread>
#include "Common/Log.h"

View file

@ -20,6 +20,8 @@
#include <cstdint>
#include <string>
#include <vector>
#include <cstring>
#include "Common/Common.h"
class PointerWrap;

View file

@ -16,6 +16,8 @@
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#include <mutex>
#include <condition_variable>
#include "Common/Thread/ThreadUtil.h"
#include "Core/Debugger/WebSocket.h"
#include "Core/Debugger/WebSocket/WebSocketUtils.h"

View file

@ -1,3 +1,5 @@
#include <cstring>
#include "Common/CommonFuncs.h"
#include "Common/Log.h"
#include "Core/MIPS/IR/IRInst.h"

View file

@ -20,6 +20,7 @@
#include "Common/TimeUtil.h"
#include "Common/GraphicsContext.h"
#include "Core/Core.h"
#include "Core/System.h"
#include "GPU/GPU.h"
#include "GPU/GPUCommon.h"
@ -108,6 +109,8 @@ bool GPU_Init(GraphicsContext *ctx, Draw::DrawContext *draw) {
SetGPU(new GPU_Vulkan(ctx, draw));
break;
#endif
default:
break;
}
if (gpu && !gpu->IsStarted())

View file

@ -19,6 +19,7 @@
#include "ppsspp_config.h"
#include <cmath>
#include <cstring>
#include "Common/Common.h"
#include "Core/Util/AudioFormat.h" // for clamp_u8

View file

@ -17,6 +17,8 @@
#include <atomic>
#include <mutex>
#include <condition_variable>
#include "Common/Profiler/Profiler.h"
#include "Common/Thread/ThreadManager.h"
#include "Common/TimeUtil.h"