共用方式為


GLKTextureLoader.FromUrl 方法

定義

多載

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 的實例。

適用於