mirror of
https://github.com/ZuneDev/Xune.git
synced 2026-07-27 13:13:10 -07:00
Format RenderApi code
This commit is contained in:
@@ -9,16 +9,16 @@ using System.Runtime.InteropServices;
|
||||
|
||||
namespace Microsoft.Iris.Render.Extensions
|
||||
{
|
||||
public class GradientInformation : IDisposable
|
||||
{
|
||||
public ImageInformation imageInfo;
|
||||
internal GCHandle gcData;
|
||||
|
||||
void IDisposable.Dispose()
|
||||
public class GradientInformation : IDisposable
|
||||
{
|
||||
if (!this.gcData.IsAllocated)
|
||||
return;
|
||||
this.gcData.Free();
|
||||
public ImageInformation imageInfo;
|
||||
internal GCHandle gcData;
|
||||
|
||||
void IDisposable.Dispose()
|
||||
{
|
||||
if (!this.gcData.IsAllocated)
|
||||
return;
|
||||
this.gcData.Free();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user