You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
420 B
21 lines
420 B
//
|
|
// SCDepthBlurMetalRenderCommand.h
|
|
// Snapchat
|
|
//
|
|
// Created by Brian Ng on 11/8/17.
|
|
//
|
|
//
|
|
|
|
#import "SCMetalModule.h"
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
/*
|
|
@class SCDepthBlurMetalRenderCommand
|
|
Prepares the command buffer for the SCDepthBlurMetalModule.metal shader.
|
|
*/
|
|
@interface SCDepthBlurMetalRenderCommand : NSObject <SCMetalRenderCommand>
|
|
|
|
@property (nonatomic, readonly) NSString *functionName;
|
|
|
|
@end
|