Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
Update License
Browse files Browse the repository at this point in the history
  • Loading branch information
wmltogether committed Dec 25, 2016
1 parent 22c166b commit d1df3ce
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions UnityTexTool/UnityEngine/DxtDataHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@

namespace UnityTexTool.UnityEngine
{
/*
* code from mono game framework
* Microsoft Public License (Ms-PL)
* MonoGame - Copyright © 2009-2016 The MonoGame Team
* All rights reserved.
*/
public class DxtCompressor:IDisposable
{
public bool Compress(byte[] sourceData, int width, int height, Nvidia.TextureTools.Format textureformat, out byte[] output)
Expand Down Expand Up @@ -85,6 +92,8 @@ public void Dispose()
GC.SuppressFinalize(this);
}
}


public class DxtDataHandler : IDisposable
{
public byte[] dst;
Expand Down

0 comments on commit d1df3ce

Please sign in to comment.