forked from MoonsideGames/RefreshCS
Compare commits
No commits in common. "113c1821dd6b2d39929006ac39a3c186c2c64b65" and "9068263afcf5743ac8f2c023eb68610523feb905" have entirely different histories.
113c1821dd
...
9068263afc
|
@ -36,7 +36,7 @@ namespace RefreshCS
|
|||
/* Version */
|
||||
|
||||
public const uint REFRESH_MAJOR_VERSION = 1;
|
||||
public const uint REFRESH_MINOR_VERSION = 10;
|
||||
public const uint REFRESH_MINOR_VERSION = 9;
|
||||
public const uint REFRESH_PATCH_VERSION = 0;
|
||||
|
||||
public const uint REFRESH_COMPILED_VERSION = (
|
||||
|
@ -367,15 +367,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
|
||||
{
|
||||
|
@ -954,7 +945,8 @@ namespace RefreshCS
|
|||
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern IntPtr Refresh_AcquireCommandBuffer(
|
||||
IntPtr device
|
||||
IntPtr device,
|
||||
byte isFixed
|
||||
);
|
||||
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
|
|
Loading…
Reference in New Issue