mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
17 lines
391 B
Objective-C
Executable File
17 lines
391 B
Objective-C
Executable File
#import "GPUImageOutput.h"
|
|
#import <CoreImage/CoreImage.h>
|
|
|
|
@interface GPUImageTextureInput : GPUImageOutput
|
|
{
|
|
CGSize textureSize;
|
|
}
|
|
|
|
- (instancetype)initWithTexture:(GLuint)newInputTexture size:(CGSize)newTextureSize;
|
|
- (instancetype)initWithCIImage:(CIImage *)ciImage;
|
|
|
|
- (void)processTextureWithFrameTime:(CMTime)frameTime synchronous:(bool)synchronous;
|
|
|
|
- (CGSize)textureSize;
|
|
|
|
@end
|