forked from MoonsideGames/RefreshCS
Compare commits
2 Commits
1643061386
...
bc9ed80e04
Author | SHA1 | Date |
---|---|---|
Caleb Cornett | bc9ed80e04 | |
TheSpydog | 880bf79f3a |
|
@ -136,10 +136,7 @@ namespace RefreshCS
|
|||
One,
|
||||
Two,
|
||||
Four,
|
||||
Eight,
|
||||
Sixteen,
|
||||
ThirtyTwo,
|
||||
SixtyFour
|
||||
Eight
|
||||
}
|
||||
|
||||
public enum CubeMapFace : uint
|
||||
|
@ -461,6 +458,7 @@ namespace RefreshCS
|
|||
public uint depth;
|
||||
public byte isCube;
|
||||
public uint levelCount;
|
||||
public SampleCount sampleCount;
|
||||
public TextureFormat format;
|
||||
public TextureUsageFlags usageFlags; /* Refresh_TextureUsageFlags */
|
||||
}
|
||||
|
@ -555,7 +553,6 @@ namespace RefreshCS
|
|||
public uint depth;
|
||||
public uint layer;
|
||||
public uint level;
|
||||
public SampleCount sampleCount;
|
||||
public Vec4 clearColor;
|
||||
public LoadOp loadOp;
|
||||
public StoreOp storeOp;
|
||||
|
@ -954,8 +951,7 @@ namespace RefreshCS
|
|||
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern IntPtr Refresh_AcquireCommandBuffer(
|
||||
IntPtr device,
|
||||
byte isFixed
|
||||
IntPtr device
|
||||
);
|
||||
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
|
|
Loading…
Reference in New Issue