WVR_IsOverlayShow¶
-
WVR_EXPORT bool WVR_IsOverlayShow(int32_t overlayId)
Get overlay show or hide.
- Return
- The result of overlay show or hide.
- Version
- API Level 1
- Parameters
overlayId
: which overlay should be control.
How to use¶
Here is an example for the function:
#include <wvr/wvr_overlay.h>
int32_t mOverlayId;
void exampleFun() {
WVR_GenOverlay(&mOverlayId);
WVR_IsOverlayShow(mOverlayId);
WVR_DelOverlay(mOverlayId);
}