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 preciseFormatOnly ) : 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.
preciseFormatOnly bool /// Whether precise or fallback format mode is used to detecting. /// In case the pixel format doesn't supported by device, false will be returned /// if in precise mode, and natively used pixel format will be actually use to /// check if in fallback mode. ///
return bool
        public virtual bool IsHardwareFilteringSupported(TextureType ttype, PixelFormat format, int usage, bool preciseFormatOnly)
        {
            throw new NotImplementedException();
        }
		#endregion Methods

Same methods

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