mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-08 10:46:09 +01:00
19 lines
299 B
C
19 lines
299 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace dxvk {
|
||
|
|
||
|
enum D3D9SpecConstantId : uint32_t {
|
||
|
AlphaTestEnable = 0,
|
||
|
AlphaCompareOp = 1,
|
||
|
SamplerType = 2,
|
||
|
FogEnabled = 3,
|
||
|
VertexFogMode = 4,
|
||
|
PixelFogMode = 5,
|
||
|
|
||
|
PointMode = 6,
|
||
|
ProjectionType = 7,
|
||
|
};
|
||
|
|
||
|
}
|