Remove Gfx Driver Vertex and IndexBuffer size config

This commit is contained in:
2026-03-21 10:11:10 +01:00
parent afe30a5dbd
commit 6beef97cdf
7 changed files with 41 additions and 31 deletions
@@ -10,9 +10,6 @@ struct GfxDirectX9Config {
// 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
};
class GfxDirectX9 : public GfxDriverBase<GfxDirectX9Config> {