Interface IDownloadProvider
Provides a mechanism for loading external resources from a URI
Namespace: GLTFast.Loading
Assembly: solution.dll
Syntax
public interface IDownloadProvider
Methods
Request(Uri)
Sends a URI request
Declaration
Task<IDownload> Request(Uri url)
Parameters
Type | Name | Description |
---|---|---|
Uri | url | URI to request |
Returns
Type | Description |
---|---|
Task<IDownload> | Object representing the request |
RequestTexture(Uri, bool)
Sends a URI request to load a texture
Declaration
Task<ITextureDownload> RequestTexture(Uri url, bool nonReadable)
Parameters
Type | Name | Description |
---|---|---|
Uri | url | URI to request |
bool | nonReadable | If true, resulting texture is not CPU readable (uses less memory) |
Returns
Type | Description |
---|---|
Task<ITextureDownload> | Object representing the request |