GLKTextureLoader.FromUrl 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
FromUrl(NSUrl, NSDictionary, NSError) |
從 URL 指向的檔案載入紋理。 |
FromUrl(NSUrl, GLKTextureOperations, NSError) |
從 URL 指向的檔案載入紋理。 |
FromUrl(NSUrl, NSDictionary, NSError)
從 URL 指向的檔案載入紋理。
[Foundation.Export("textureWithContentsOfURL:options:error:")]
public static GLKit.GLKTextureInfo FromUrl (Foundation.NSUrl url, Foundation.NSDictionary textureOperations, out Foundation.NSError error);
static member FromUrl : Foundation.NSUrl * Foundation.NSDictionary * -> GLKit.GLKTextureInfo
參數
- url
- NSUrl
指向要載入之紋理的 URL。
- textureOperations
- NSDictionary
填入組態選項的 NSDictionary。 或者,使用採用 GLKTextureOperations 物件的這個方法強型別版本。
這個參數可以是 null
。
- error
- NSError
錯誤結果。
傳回
在錯誤時,這會傳回 null,錯誤的詳細資料將會儲存在 NSError 參數中。 否則為 GLKTextureInfo 的實例。
- 屬性
適用於
FromUrl(NSUrl, GLKTextureOperations, NSError)
從 URL 指向的檔案載入紋理。
public static GLKit.GLKTextureInfo FromUrl (Foundation.NSUrl url, GLKit.GLKTextureOperations textureOperations, out Foundation.NSError error);
static member FromUrl : Foundation.NSUrl * GLKit.GLKTextureOperations * -> GLKit.GLKTextureInfo
參數
- url
- NSUrl
指向要載入之紋理的 URL。
- textureOperations
- GLKTextureOperations
在紋理上載入影像期間要執行的作業。
- error
- NSError
錯誤結果。
傳回
在錯誤時,這會傳回 null,錯誤的詳細資料將會儲存在 NSError 參數中。 否則為 GLKTextureInfo 的實例。