Files
2016-09-27 10:07:35 +03:00

15 lines
293 B
Objective-C
Executable File

#import "GPUImageOutput.h"
@interface GPUImageTextureInput : GPUImageOutput
{
CGSize textureSize;
}
// Initialization and teardown
- (id)initWithTexture:(GLuint)newInputTexture size:(CGSize)newTextureSize;
// Image rendering
- (void)processTextureWithFrameTime:(CMTime)frameTime;
@end