mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
16 lines
391 B
Objective-C
Executable file
16 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
|