mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 03:20:09 +00:00
22 lines
628 B
Objective-C
Executable File
22 lines
628 B
Objective-C
Executable File
#import "GPUImageFilter.h"
|
|
|
|
extern NSString *const kGPUImageTwoInputTextureVertexShaderString;
|
|
|
|
@interface GPUImageTwoInputFilter : GPUImageFilter
|
|
{
|
|
GPUImageFramebuffer *secondInputFramebuffer;
|
|
|
|
GLint filterSecondTextureCoordinateAttribute;
|
|
GLint filterInputTextureUniform2;
|
|
GPUImageRotationMode inputRotation2;
|
|
CMTime firstFrameTime, secondFrameTime;
|
|
|
|
BOOL hasSetFirstTexture, hasReceivedFirstFrame, hasReceivedSecondFrame, firstFrameWasVideo, secondFrameWasVideo;
|
|
BOOL firstFrameCheckDisabled, secondFrameCheckDisabled;
|
|
}
|
|
|
|
- (void)disableFirstFrameCheck;
|
|
- (void)disableSecondFrameCheck;
|
|
|
|
@end
|