GLKTextureLoaderCallback Delegate

Definition

Signature used by the asynchrous texture loading methods in GLKTextureLoader.

public delegate void GLKTextureLoaderCallback(GLKTextureInfo textureInfo, NSError error);
type GLKTextureLoaderCallback = delegate of GLKTextureInfo * NSError -> unit

Parameters

textureInfo
GLKTextureInfo

The infromation about the texture loaded, or null on error.

error
NSError

On success, this value is null. Otherwise it contains the error information.

Applies to