WVR_StopEyeExp

WVR_EXPORT void WVR_StopEyeExp()

Use this function to stop the eye expression that was started.

Use this API to stop eye expression that you already started, and release related eye expression resources. This API must be called by the main thread.

Version
API Level 10

How to use

Sample function:

#include <wvr/wvr_eyeexp.h>

if (WVR_StartEyeExp() == WVR_Success) {
    //WVR_GetEyeExp
    WVR_StopEyeExp();
} else {
    // start eye expression failed!
}