Banuba SDK
Functions
BNBAttachmentLoadOp.h File Reference
#import <Foundation/Foundation.h>

Go to the source code of this file.

Functions

typedef NS_ENUM (NSInteger, BNBAttachmentLoadOp)
 

Function Documentation

◆ NS_ENUM()

typedef NS_ENUM ( NSInteger  ,
BNBAttachmentLoadOp   
)

Don't care about attachment content at the pass start (pass will overwrite all pixels)

Clear to clear_color at pass start

load pixels from the previous frame

Definition at line 6 of file BNBAttachmentLoadOp.h.

7 {
8  /**
9  * Don't care about attachment content at the pass
10  * start (pass will overwrite all pixels)
11  */
12  BNBAttachmentLoadOpDontCare,
13  /** Clear to `clear_color` at pass start */
14  BNBAttachmentLoadOpClear,
15  /** load pixels from the previous frame */
16  BNBAttachmentLoadOpLoad,
17 };