Axiom.Core.TextureManager.IsHardwareFilteringSupported C# (CSharp) Method

IsHardwareFilteringSupported() public method

Returns whether this render system has hardware filtering supported for the texture format requested with the given usage options.
public IsHardwareFilteringSupported ( TextureType ttype, PixelFormat format, int usage ) : bool
ttype TextureType The texture type requested
format PixelFormat The pixel format requested
usage int the kind of usage this texture is intended for, a combination of the TextureUsage flags.
return bool
        public virtual bool IsHardwareFilteringSupported(TextureType ttype, PixelFormat format, int usage)
        {
            return IsHardwareFilteringSupported(ttype, format, usage);
        }
        /// <summary>

Same methods

TextureManager::IsHardwareFilteringSupported ( TextureType ttype, PixelFormat format, int usage, bool preciseFormatOnly ) : bool