forked from MoonsideGames/RefreshCS
Compare commits
No commits in common. "db76f87bdeb76278be939eac80ae494652d7ebc2" and "2880ab39a323a8482331cf76f69d764f13ff2921" have entirely different histories.
db76f87bde
...
2880ab39a3
|
@ -250,7 +250,11 @@ namespace RefreshCS
|
|||
OneMinusDestinationAlpha,
|
||||
ConstantColor,
|
||||
OneMinusConstantColor,
|
||||
SourceAlphaSaturate
|
||||
SourceAlphaSaturate,
|
||||
SourceOneColor,
|
||||
OneMinusSourceOneColor,
|
||||
SourceOneAlpha,
|
||||
OneMinusSourceOneAlpha
|
||||
}
|
||||
|
||||
[Flags]
|
||||
|
@ -367,15 +371,6 @@ namespace RefreshCS
|
|||
public uint level;
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct IndirectDrawCommand
|
||||
{
|
||||
public uint vertexCount;
|
||||
public uint instanceCount;
|
||||
public uint firstVertex;
|
||||
public uint firstInstance;
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct SamplerStateCreateInfo
|
||||
{
|
||||
|
@ -489,6 +484,7 @@ namespace RefreshCS
|
|||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct RasterizerState
|
||||
{
|
||||
public byte depthClampEnable;
|
||||
public FillMode fillMode;
|
||||
public CullMode cullMode;
|
||||
public FrontFace frontFace;
|
||||
|
|
Loading…
Reference in New Issue