Banuba SDK
BNBFrameDurationListener.h
Go to the documentation of this file.
1 // AUTOGENERATED FILE - DO NOT MODIFY!
2 // This file generated by Djinni from effect_player.djinni
3 
4 #import <Foundation/Foundation.h>
5 
6 
7 /** Callback interface to receive FPS timings. */
9 
10 /** FPS information about recognition engine. */
11 - (void)onRecognizerFrameDurationChanged:(float)instant
12  averaged:(float)averaged;
13 
14 /**
15  * FPS information about camera images push.
16  * @see EffectPlayer.pushFrame
17  */
18 - (void)onCameraFrameDurationChanged:(float)instant
19  averaged:(float)averaged;
20 
21 /** FPS of Effect Player drawing. */
22 - (void)onRenderFrameDurationChanged:(float)instant
23  averaged:(float)averaged;
24 
25 @end
BNBFrameDurationListener-p
Callback interface to receive FPS timings.
Definition: BNBFrameDurationListener.h:8