forked from MoonsideGames/RefreshCS
Compare commits
2 Commits
2880ab39a3
...
db76f87bde
Author | SHA1 | Date |
---|---|---|
Caleb Cornett | db76f87bde | |
TheSpydog | 9068263afc |
|
@ -250,11 +250,7 @@ namespace RefreshCS
|
|||
OneMinusDestinationAlpha,
|
||||
ConstantColor,
|
||||
OneMinusConstantColor,
|
||||
SourceAlphaSaturate,
|
||||
SourceOneColor,
|
||||
OneMinusSourceOneColor,
|
||||
SourceOneAlpha,
|
||||
OneMinusSourceOneAlpha
|
||||
SourceAlphaSaturate
|
||||
}
|
||||
|
||||
[Flags]
|
||||
|
@ -371,6 +367,15 @@ 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
|
||||
{
|
||||
|
@ -484,7 +489,6 @@ 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