CSharpImageLibrary.DDS.DDSGeneral.GetCompressedSizeOfImage C# (CSharp) Method

GetCompressedSizeOfImage() static private method

static private GetCompressedSizeOfImage ( int mipCount, ImageEngineFormat format, int baseWidth, int baseHeight ) : int
mipCount int
format ImageEngineFormat
baseWidth int
baseHeight int
return int
        internal static int GetCompressedSizeOfImage(int mipCount, ImageEngineFormat format, int baseWidth, int baseHeight)
        {
            return GetCompressedSizeUpToIndex(mipCount - 1, format, baseWidth, baseHeight);
        }