pub type ULGPUDriverUpdateTextureCallback = Option<unsafe extern "C" fn(texture_id: c_uint, bitmap: ULBitmap)>;
Expand description

The callback invoked when the GPUDriver wants to update an existing non-RTT texture with new bitmap data.

Aliased Type§

enum ULGPUDriverUpdateTextureCallback {
    None,
    Some(unsafe extern "C" fn(_: u32, _: *mut C_Bitmap)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: u32, _: *mut C_Bitmap))

Some value of type T.