2015-07-26 20:38:40 +00:00
|
|
|
// Copyright (c) 2015- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#include "Core/Core.h"
|
|
|
|
|
|
|
|
#include "GPU/GPU.h"
|
|
|
|
#include "GPU/GPUInterface.h"
|
|
|
|
#include "GPU/GLES/GLES_GPU.h"
|
|
|
|
#include "GPU/Null/NullGpu.h"
|
|
|
|
#include "GPU/Software/SoftGpu.h"
|
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
#include "GPU/Directx9/helper/global.h"
|
|
|
|
#include "GPU/Directx9/GPU_DX9.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
GPUStatistics gpuStats;
|
|
|
|
GPUInterface *gpu;
|
|
|
|
GPUDebugInterface *gpuDebug;
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
static void SetGPU(T *obj) {
|
|
|
|
gpu = obj;
|
|
|
|
gpuDebug = obj;
|
|
|
|
}
|
|
|
|
|
2015-12-31 15:59:40 +00:00
|
|
|
bool GPU_Init(GraphicsContext *ctx) {
|
2015-07-26 20:38:40 +00:00
|
|
|
switch (PSP_CoreParameter().gpuCore) {
|
|
|
|
case GPU_NULL:
|
|
|
|
SetGPU(new NullGPU());
|
|
|
|
break;
|
|
|
|
case GPU_GLES:
|
2015-12-31 15:59:40 +00:00
|
|
|
SetGPU(new GLES_GPU(ctx));
|
2015-07-26 20:38:40 +00:00
|
|
|
break;
|
|
|
|
case GPU_SOFTWARE:
|
|
|
|
SetGPU(new SoftGPU());
|
|
|
|
break;
|
|
|
|
case GPU_DIRECTX9:
|
|
|
|
#if defined(_WIN32)
|
|
|
|
SetGPU(new DIRECTX9_GPU());
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return gpu != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GPU_Shutdown() {
|
|
|
|
delete gpu;
|
|
|
|
gpu = 0;
|
|
|
|
gpuDebug = 0;
|
|
|
|
}
|