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