forked from MoonsideGames/RefreshCS
Compare commits
No commits in common. "bc9ed80e04d28516a3c0c24e2a208c3306f7af0f" and "1643061386177f62b516ccaad0ea04607cae2333" have entirely different histories.
bc9ed80e04
...
1643061386
|
@ -136,7 +136,10 @@ namespace RefreshCS
|
|||
One,
|
||||
Two,
|
||||
Four,
|
||||
Eight
|
||||
Eight,
|
||||
Sixteen,
|
||||
ThirtyTwo,
|
||||
SixtyFour
|
||||
}
|
||||
|
||||
public enum CubeMapFace : uint
|
||||
|
@ -458,7 +461,6 @@ namespace RefreshCS
|
|||
public uint depth;
|
||||
public byte isCube;
|
||||
public uint levelCount;
|
||||
public SampleCount sampleCount;
|
||||
public TextureFormat format;
|
||||
public TextureUsageFlags usageFlags; /* Refresh_TextureUsageFlags */
|
||||
}
|
||||
|
@ -553,6 +555,7 @@ namespace RefreshCS
|
|||
public uint depth;
|
||||
public uint layer;
|
||||
public uint level;
|
||||
public SampleCount sampleCount;
|
||||
public Vec4 clearColor;
|
||||
public LoadOp loadOp;
|
||||
public StoreOp storeOp;
|
||||
|
@ -951,7 +954,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