ppsspp/GPU/GPUState.cpp

87 lines
2.2 KiB
C++
Raw Normal View History

2012-11-01 15:19:01 +00:00
// Copyright (c) 2012- 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.
2012-11-01 15:19:01 +00:00
// 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 "ge_constants.h"
#include "GPUState.h"
#include "GLES/ShaderManager.h"
#include "GLES/DisplayListInterpreter.h"
2012-11-06 16:05:27 +00:00
#include "Null/NullGpu.h"
#include "../Core/CoreParameter.h"
#include "../Core/System.h"
2012-11-01 15:19:01 +00:00
GPUgstate gstate;
GPUStateCache gstate_c;
2012-11-06 16:05:27 +00:00
GPUInterface *gpu;
GPUStatistics gpuStats;
2012-11-01 15:19:01 +00:00
void InitGfxState()
{
memset(&gstate, 0, sizeof(gstate));
memset(&gstate_c, 0, sizeof(gstate_c));
2012-11-01 15:19:01 +00:00
for (int i = 0; i < 256; i++) {
gstate.cmdmem[i] = i << 24;
}
2012-11-01 15:19:01 +00:00
gstate.lightingEnable = 0x17000001;
static const float identity4x3[12] =
2012-11-01 15:19:01 +00:00
{1,0,0,
0,1,0,
0,0,1,
0,0,0,};
static const float identity4x4[16] =
{1,0,0,0,
0,1,0,0,
0,0,1,0,
0,0,0,1};
2012-11-01 15:19:01 +00:00
memcpy(gstate.worldMatrix, identity4x3, 12 * sizeof(float));
memcpy(gstate.viewMatrix, identity4x3, 12 * sizeof(float));
memcpy(gstate.projMatrix, identity4x4, 16 * sizeof(float));
memcpy(gstate.tgenMatrix, identity4x3, 12 * sizeof(float));
for (int i = 0; i < 8; i++) {
memcpy(gstate.boneMatrix + i * 12, identity4x3, 12 * sizeof(float));
}
2012-11-06 16:05:27 +00:00
switch (PSP_CoreParameter().gpuCore) {
case GPU_NULL:
gpu = new NullGPU();
break;
case GPU_GLES:
gpu = new GLES_GPU();
2012-11-06 16:05:27 +00:00
break;
2013-02-24 18:23:31 +00:00
case GPU_SOFTWARE:
gpu = new NullGPU();
break;
2012-11-06 16:05:27 +00:00
}
}
void ShutdownGfxState()
{
delete gpu;
gpu = NULL;
2012-11-01 15:19:01 +00:00
}
// When you have changed state outside the psp gfx core,
// or saved the context and has reloaded it, call this function.
void ReapplyGfxState()
{
if (!gpu)
return;
gpu->ReapplyGfxState();
2012-11-01 15:19:01 +00:00
}