1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-02-20 19:54:19 +01:00

[d3d9] Fix fixed function texture mask

Fixed function supports 8 textures so we need 8 ones.
This commit is contained in:
Robin Kertels 2024-10-09 22:29:28 +02:00 committed by misyl
parent a1a3800b3f
commit 395ac38890

View File

@ -23,7 +23,7 @@ namespace dxvk {
};
static constexpr D3D9ShaderMasks FixedFunctionMask =
{ 0b1111111, 0b1 };
{ 0b11111111, 0b1 };
struct D3D9BlendState {
D3DBLEND Src;