2019-12-16 04:28:01 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
namespace dxvk {
|
|
|
|
|
|
|
|
enum D3D9SpecConstantId : uint32_t {
|
2021-08-09 04:11:26 +02:00
|
|
|
AlphaCompareOp = 0,
|
|
|
|
SamplerType = 1,
|
|
|
|
FogEnabled = 2,
|
|
|
|
VertexFogMode = 3,
|
|
|
|
PixelFogMode = 4,
|
2019-12-16 04:28:01 +01:00
|
|
|
|
2021-08-09 04:11:26 +02:00
|
|
|
PointMode = 5,
|
|
|
|
ProjectionType = 6,
|
2020-01-26 18:42:49 +01:00
|
|
|
|
2021-08-09 04:11:26 +02:00
|
|
|
VertexShaderBools = 7,
|
|
|
|
PixelShaderBools = 8,
|
2021-08-08 05:52:36 +02:00
|
|
|
Fetch4 = 9,
|
|
|
|
|
|
|
|
SamplerDepthMode = 10,
|
2022-06-30 22:33:06 +02:00
|
|
|
SamplerNull = 11,
|
2019-12-16 04:28:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|