2013-08-17 09:23:51 +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.
|
|
|
|
|
|
|
|
// 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/.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-09-13 21:34:00 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2013-08-17 09:23:51 +00:00
|
|
|
|
2023-02-25 13:24:59 +00:00
|
|
|
#include "GPU/GPUCommonHW.h"
|
2020-08-03 21:24:50 +00:00
|
|
|
#include "GPU/Directx9/FramebufferManagerDX9.h"
|
2016-04-10 08:27:28 +00:00
|
|
|
#include "GPU/Directx9/DrawEngineDX9.h"
|
2022-08-22 10:20:21 +00:00
|
|
|
#include "GPU/Common/TextureShaderCommon.h"
|
2014-09-10 08:44:22 +00:00
|
|
|
#include "GPU/Common/VertexDecoderCommon.h"
|
2013-08-17 09:23:51 +00:00
|
|
|
|
2013-09-15 10:46:14 +00:00
|
|
|
class ShaderManagerDX9;
|
|
|
|
class LinkedShaderDX9;
|
2020-09-13 21:34:00 +00:00
|
|
|
class TextureCacheDX9;
|
2013-08-17 09:23:51 +00:00
|
|
|
|
2023-02-25 13:24:59 +00:00
|
|
|
class GPU_DX9 : public GPUCommonHW {
|
2013-08-17 09:23:51 +00:00
|
|
|
public:
|
2017-01-30 15:50:35 +00:00
|
|
|
GPU_DX9(GraphicsContext *gfxCtx, Draw::DrawContext *draw);
|
2016-12-21 17:13:58 +00:00
|
|
|
|
2022-09-20 08:02:15 +00:00
|
|
|
u32 CheckGPUFeatures() const override;
|
2013-08-17 09:23:51 +00:00
|
|
|
|
2023-02-26 10:05:52 +00:00
|
|
|
void DeviceLost() override;
|
|
|
|
void DeviceRestore(Draw::DrawContext *draw) override;
|
|
|
|
|
2017-11-05 19:33:28 +00:00
|
|
|
void ReapplyGfxState() override;
|
2016-03-31 08:17:02 +00:00
|
|
|
void GetStats(char *buffer, size_t bufsize) override;
|
2015-07-25 12:22:43 +00:00
|
|
|
|
2013-08-17 09:23:51 +00:00
|
|
|
protected:
|
2015-03-15 01:11:00 +00:00
|
|
|
void FinishDeferred() override;
|
2013-08-17 09:23:51 +00:00
|
|
|
|
|
|
|
private:
|
2017-11-05 19:33:28 +00:00
|
|
|
void BeginFrame() override;
|
2013-08-17 09:23:51 +00:00
|
|
|
|
2017-02-05 19:36:00 +00:00
|
|
|
LPDIRECT3DDEVICE9 device_;
|
|
|
|
LPDIRECT3DDEVICE9EX deviceEx_;
|
|
|
|
|
2016-12-21 17:07:17 +00:00
|
|
|
FramebufferManagerDX9 *framebufferManagerDX9_;
|
2016-12-21 17:51:19 +00:00
|
|
|
TextureCacheDX9 *textureCacheDX9_;
|
2016-04-10 08:21:48 +00:00
|
|
|
DrawEngineDX9 drawEngine_;
|
2017-01-23 19:48:23 +00:00
|
|
|
ShaderManagerDX9 *shaderManagerDX9_;
|
2013-08-17 09:23:51 +00:00
|
|
|
};
|