fields should be public
parent
61a1983092
commit
5591c81d14
|
@ -493,14 +493,14 @@ namespace RefreshCS
|
||||||
[StructLayout(LayoutKind.Sequential)]
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
public struct TextureCreateInfo
|
public struct TextureCreateInfo
|
||||||
{
|
{
|
||||||
uint width;
|
public uint width;
|
||||||
uint height;
|
public uint height;
|
||||||
uint depth;
|
public uint depth;
|
||||||
byte isCube;
|
public byte isCube;
|
||||||
SampleCount sampleCount;
|
public SampleCount sampleCount;
|
||||||
uint levelCount;
|
public uint levelCount;
|
||||||
ColorFormat format;
|
public ColorFormat format;
|
||||||
uint usageFlags; /* Refresh_TextureUsageFlags */
|
public uint usageFlags; /* Refresh_TextureUsageFlags */
|
||||||
}
|
}
|
||||||
|
|
||||||
[StructLayout(LayoutKind.Sequential)]
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
|
|
Loading…
Reference in New Issue