remotes/1695057764242510520/main
cosmonaut 2022-08-25 12:32:25 -07:00
parent 98c590ae77
commit c378027989
1 changed files with 17 additions and 3 deletions

View File

@ -36,7 +36,7 @@ namespace RefreshCS
/* Version */ /* Version */
public const uint REFRESH_MAJOR_VERSION = 1; public const uint REFRESH_MAJOR_VERSION = 1;
public const uint REFRESH_MINOR_VERSION = 5; public const uint REFRESH_MINOR_VERSION = 6;
public const uint REFRESH_PATCH_VERSION = 0; public const uint REFRESH_PATCH_VERSION = 0;
public const uint REFRESH_COMPILED_VERSION = ( public const uint REFRESH_COMPILED_VERSION = (
@ -120,7 +120,8 @@ namespace RefreshCS
{ {
Sampler = 1, Sampler = 1,
ColorTarget = 2, ColorTarget = 2,
DepthStencilTarget = 4 DepthStencilTarget = 4,
Compute = 8
} }
public enum SampleCount public enum SampleCount
@ -149,7 +150,8 @@ namespace RefreshCS
{ {
Vertex = 1, Vertex = 1,
Index = 2, Index = 2,
Compute = 4 Compute = 4,
Indirect = 8
} }
public enum VertexElementFormat public enum VertexElementFormat
@ -620,6 +622,18 @@ namespace RefreshCS
uint fragmentParamOffset uint fragmentParamOffset
); );
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void Refresh_DrawPrimitivesIndirect(
IntPtr device,
IntPtr commandBuffer,
IntPtr buffer,
uint offsetInBytes,
uint drawCount,
uint stride,
uint vertexParamOffset,
uint fragmentParamOffset
);
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void Refresh_DispatchCompute( public static extern void Refresh_DispatchCompute(
IntPtr device, IntPtr device,