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,
|
OneMinusDestinationAlpha,
|
||||||
ConstantColor,
|
ConstantColor,
|
||||||
OneMinusConstantColor,
|
OneMinusConstantColor,
|
||||||
SourceAlphaSaturate,
|
SourceAlphaSaturate
|
||||||
SourceOneColor,
|
|
||||||
OneMinusSourceOneColor,
|
|
||||||
SourceOneAlpha,
|
|
||||||
OneMinusSourceOneAlpha
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[Flags]
|
[Flags]
|
||||||
|
@ -371,6 +367,15 @@ namespace RefreshCS
|
||||||
public uint level;
|
public uint level;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
|
public struct IndirectDrawCommand
|
||||||
|
{
|
||||||
|
public uint vertexCount;
|
||||||
|
public uint instanceCount;
|
||||||
|
public uint firstVertex;
|
||||||
|
public uint firstInstance;
|
||||||
|
}
|
||||||
|
|
||||||
[StructLayout(LayoutKind.Sequential)]
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
public struct SamplerStateCreateInfo
|
public struct SamplerStateCreateInfo
|
||||||
{
|
{
|
||||||
|
@ -484,7 +489,6 @@ namespace RefreshCS
|
||||||
[StructLayout(LayoutKind.Sequential)]
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
public struct RasterizerState
|
public struct RasterizerState
|
||||||
{
|
{
|
||||||
public byte depthClampEnable;
|
|
||||||
public FillMode fillMode;
|
public FillMode fillMode;
|
||||||
public CullMode cullMode;
|
public CullMode cullMode;
|
||||||
public FrontFace frontFace;
|
public FrontFace frontFace;
|
||||||
|
|
Loading…
Reference in New Issue