dxvk/src/d3d8/d3d8_options.h
2025-03-06 19:09:12 +02:00

41 lines
1.3 KiB
C++

#pragma once
#include "d3d8_include.h"
#include "../d3d9/d3d9_bridge.h"
#include "../util/config/config.h"
namespace dxvk {
struct D3D8Options {
/// Override application vertex shader declarations.
std::vector<std::pair<D3DVSDE_REGISTER, D3DVSDT_TYPE>> forceVsDecl;
/// Enable/disable the drawcall batcher.
bool batching;
/// Place all P8 textures in D3DPOOL_SCRATCH.
bool placeP8InScratch;
/// Ignore D3DLOCK_DISCARD for everything except D3DUSAGE_DYNAMIC + D3DUSAGE_WRITEONLY buffers.
bool forceLegacyDiscard;
/// Force D3DTTFF_PROJECTED for the necessary stages when a depth texture is bound to slot 0.
bool shadowPerspectiveDivide;
D3D8Options() {}
D3D8Options(const Config& config) {
auto forceVsDeclStr = config.getOption<std::string>("d3d8.forceVsDecl", "");
batching = config.getOption<bool> ("d3d8.batching", false);
placeP8InScratch = config.getOption<bool> ("d3d8.placeP8InScratch", false);
forceLegacyDiscard = config.getOption<bool> ("d3d8.forceLegacyDiscard", false);
shadowPerspectiveDivide = config.getOption<bool> ("d3d8.shadowPerspectiveDivide", false);
parseVsDecl(forceVsDeclStr);
}
void parseVsDecl(const std::string& decl);
};
}