fix Stencil API
parent
4268db4616
commit
86cc5fa142
|
@ -463,9 +463,6 @@ namespace RefreshCS
|
||||||
public StencilOp passOp;
|
public StencilOp passOp;
|
||||||
public StencilOp depthFailOp;
|
public StencilOp depthFailOp;
|
||||||
public CompareOp compareOp;
|
public CompareOp compareOp;
|
||||||
public uint compareMask;
|
|
||||||
public uint writeMask;
|
|
||||||
public uint reference;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[StructLayout(LayoutKind.Sequential)]
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
|
@ -550,7 +547,11 @@ namespace RefreshCS
|
||||||
public CompareOp compareOp;
|
public CompareOp compareOp;
|
||||||
public byte depthBoundsTestEnable;
|
public byte depthBoundsTestEnable;
|
||||||
public byte stencilTestEnable;
|
public byte stencilTestEnable;
|
||||||
public StencilOpState stencilState;
|
public StencilOpState backStencilState;
|
||||||
|
public StencilOpState frontStencilState;
|
||||||
|
public uint compareMask;
|
||||||
|
public uint writeMask;
|
||||||
|
public uint reference;
|
||||||
public float minDepthBounds;
|
public float minDepthBounds;
|
||||||
public float maxDepthBounds;
|
public float maxDepthBounds;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue