Reenable QuickCompress for DXT5n.
Fix end of lines.
This commit is contained in:
@ -381,14 +381,14 @@ int InputOptions::Private::realMipmapCount() const
|
||||
}
|
||||
|
||||
|
||||
const Image * InputOptions::Private::image(uint face, uint mipmap) const
|
||||
{
|
||||
nvDebugCheck(face < faceCount);
|
||||
nvDebugCheck(mipmap < mipmapCount);
|
||||
|
||||
const InputImage & image = this->images[face * mipmapCount + mipmap];
|
||||
nvDebugCheck(image.face == face);
|
||||
nvDebugCheck(image.mipLevel == mipmap);
|
||||
|
||||
return image.data.ptr();
|
||||
}
|
||||
const Image * InputOptions::Private::image(uint face, uint mipmap) const
|
||||
{
|
||||
nvDebugCheck(face < faceCount);
|
||||
nvDebugCheck(mipmap < mipmapCount);
|
||||
|
||||
const InputImage & image = this->images[face * mipmapCount + mipmap];
|
||||
nvDebugCheck(image.face == face);
|
||||
nvDebugCheck(image.mipLevel == mipmap);
|
||||
|
||||
return image.data.ptr();
|
||||
}
|
||||
|
Reference in New Issue
Block a user