mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
41 lines
1.3 KiB
C++
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);
|
|
};
|
|
|
|
}
|