mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Buildfixes
This commit is contained in:
parent
3e198c53b2
commit
45cf6d423e
9 changed files with 17 additions and 0 deletions
|
@ -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"
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
|
||||
#include <cstdint>
|
||||
#include <mutex>
|
||||
#include <set>
|
||||
#include <condition_variable>
|
||||
|
||||
#include "Common/System/System.h"
|
||||
#include "Common/Profiler/Profiler.h"
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
#include <atomic>
|
||||
#include <cstring>
|
||||
#include <mutex>
|
||||
#include <condition_variable>
|
||||
#include <thread>
|
||||
|
||||
#include "Common/Log.h"
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
#include <cstdint>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <cstring>
|
||||
|
||||
#include "Common/Common.h"
|
||||
|
||||
class PointerWrap;
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#include <cstring>
|
||||
|
||||
#include "Common/CommonFuncs.h"
|
||||
#include "Common/Log.h"
|
||||
#include "Core/MIPS/IR/IRInst.h"
|
||||
|
|
|
@ -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())
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
|
||||
#include "ppsspp_config.h"
|
||||
#include <cmath>
|
||||
#include <cstring>
|
||||
|
||||
#include "Common/Common.h"
|
||||
#include "Core/Util/AudioFormat.h" // for clamp_u8
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue