Edit

Share via


GLKTextureLoader.CubeMapFromUrls Method

Definition

Overloads

CubeMapFromUrls(NSUrl[], NSDictionary, NSError)

Loads a cube map synchronously.

CubeMapFromUrls(NSUrl[], GLKTextureOperations, NSError)

Loads a cube map synchronously.

CubeMapFromUrls(NSUrl[], NSDictionary, NSError)

Loads a cube map synchronously.

public static GLKit.GLKTextureInfo CubeMapFromUrls (Foundation.NSUrl[] urls, Foundation.NSDictionary textureOperations, out Foundation.NSError error);
static member CubeMapFromUrls : Foundation.NSUrl[] * Foundation.NSDictionary *  -> GLKit.GLKTextureInfo

Parameters

urls
NSUrl[]

Six URLs that point to the sides of the cube.

textureOperations
NSDictionary

An NSDictionary populated with configuration options. Alternatively, use the strongly-typed version of this method that takes a GLKTextureOperations object.

error
NSError

Error result.

Returns

On error, this will return null, the details of the error will be stored in the NSError parameter. Otherwise the instance of the GLKTextureInfo.

Applies to

CubeMapFromUrls(NSUrl[], GLKTextureOperations, NSError)

Loads a cube map synchronously.

public static GLKit.GLKTextureInfo CubeMapFromUrls (Foundation.NSUrl[] urls, GLKit.GLKTextureOperations textureOperations, out Foundation.NSError error);
static member CubeMapFromUrls : Foundation.NSUrl[] * GLKit.GLKTextureOperations *  -> GLKit.GLKTextureInfo

Parameters

urls
NSUrl[]

Six URLs that point to the sides of the cube.

textureOperations
GLKTextureOperations

Operations to be performed during the image loading on the texture.

error
NSError

Error result.

Returns

On error, this will return null, the details of the error will be stored in the NSError parameter. Otherwise the instance of the GLKTextureInfo.

Applies to