2026-03-16 15:19:12 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <pd/drivers/gfx.hpp>
|
|
|
|
|
|
|
|
|
|
namespace PD {
|
2026-03-17 16:47:19 +01:00
|
|
|
struct GfxDirectX9Config {
|
2026-03-16 15:19:12 +01:00
|
|
|
// Vertex Allocator
|
|
|
|
|
template <typename T>
|
|
|
|
|
using VertexAlloc = std::allocator<T>;
|
|
|
|
|
// Index Allocator
|
|
|
|
|
template <typename T>
|
|
|
|
|
using IndexAlloc = std::allocator<T>;
|
|
|
|
|
|
|
|
|
|
static constexpr size_t NumVertices = 32768; // 8192*4
|
|
|
|
|
static constexpr size_t NumIndices = 49152; // 8192*6
|
|
|
|
|
};
|
2026-03-17 16:47:19 +01:00
|
|
|
|
|
|
|
|
class GfxDirectX9 : public GfxDriverBase<GfxDirectX9Config> {
|
2026-03-16 15:19:12 +01:00
|
|
|
public:
|
2026-03-17 16:47:19 +01:00
|
|
|
GfxDirectX9(void* device = nullptr)
|
|
|
|
|
: GfxDriverBase("DirectX9"), pDevice(device) {}
|
|
|
|
|
~GfxDirectX9() {}
|
2026-03-16 15:19:12 +01:00
|
|
|
|
|
|
|
|
void SysInit() override;
|
|
|
|
|
void SysDeinit() override;
|
|
|
|
|
void Submit(size_t count, size_t start) override;
|
|
|
|
|
void BindTexture(TextureID id) override;
|
|
|
|
|
void SysReset() override;
|
2026-03-18 09:31:47 +01:00
|
|
|
Li::Texture LoadTexture(
|
|
|
|
|
const std::vector<PD::u8>& pixels, int w, int h,
|
|
|
|
|
TextureFormat type = TextureFormat::RGBA32,
|
|
|
|
|
TextureFilter filter = TextureFilter::Linear) override;
|
|
|
|
|
void DeleteTexture(const Li::Texture& tex) override;
|
2026-03-16 15:19:12 +01:00
|
|
|
|
|
|
|
|
private:
|
2026-03-17 16:47:19 +01:00
|
|
|
struct Impl;
|
|
|
|
|
Impl* impl = nullptr;
|
|
|
|
|
void* pDevice = nullptr;
|
2026-03-16 15:19:12 +01:00
|
|
|
};
|
|
|
|
|
} // namespace PD
|