1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-05 19:46:15 +01:00
dxvk/src/d3d9/d3d9_spec_constants.h
2020-05-25 06:13:21 +01:00

23 lines
381 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,
VertexShaderBools = 8,
PixelShaderBools = 9,
Fetch4 = 10
};
}