fix some oversights

pull/1/head
cosmonaut 2021-01-15 19:05:28 -08:00
parent 2e3871a03d
commit fbed91bfd6
1 changed files with 17 additions and 6 deletions

View File

@ -66,11 +66,14 @@ namespace RefreshCS
DontCare
}
public enum ClearOptionsBits
[Flags]
public enum ClearOptionsFlags : uint
{
Color = 1,
Depth = 2,
Stencil = 4
Stencil = 4,
DepthStencil = Depth | Stencil,
All = Color | Depth | Stencil
}
public enum IndexElementSize
@ -585,8 +588,8 @@ namespace RefreshCS
[StructLayout(LayoutKind.Sequential)]
public struct ComputePipelineCreateInfo
{
ShaderStageState computeShaderState;
ComputePipelineLayoutCreateInfo pipelineLayoutCreateInfo;
public ShaderStageState computeShaderState;
public ComputePipelineLayoutCreateInfo pipelineLayoutCreateInfo;
}
[StructLayout(LayoutKind.Sequential)]
@ -646,7 +649,7 @@ namespace RefreshCS
IntPtr device,
IntPtr commandBuffer,
ref Rect clearRect,
uint clearOptions,
Refresh.ClearOptionsFlags clearOptions,
ref Color[] colors,
uint colorCount,
float depth,
@ -803,13 +806,21 @@ namespace RefreshCS
IntPtr buffer
);
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void Refresh_GetBufferData(
IntPtr device,
IntPtr buffer,
IntPtr data,
uint dataLengthInBytes
);
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void Refresh_SetBufferData(
IntPtr device,
IntPtr buffer,
uint offsetInBytes,
IntPtr data,
uint dataLength
uint dataLengthInBytes
);
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]