Function ovr_sys::ovr_SetFloatArray

source ·
pub unsafe extern "C" fn ovr_SetFloatArray(
    session: ovrSession,
    propertyName: *const c_char,
    values: *const f32,
    valuesSize: c_uint
) -> ovrBool
Expand description

Writes or creates a f32 array property.

session Specifies an ovrSession previously returned by ovr_Create.

propertyName The name of the property, which needs to be valid only for the call.

values An array of f32 to write from.

valuesSize Specifies the number of elements to write.

Returns true if successful, otherwise false. A false result should only occur if the property name is empty or if the property is read-only.