mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2025-01-03 07:29:28 +00:00
19 lines
314 B
C
19 lines
314 B
C
|
//
|
||
|
// ScanLineFilter.h
|
||
|
// 2Term
|
||
|
//
|
||
|
// Created by Kelvin Sherlock on 7/10/2010.
|
||
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <QuartzCore/CoreImage.h>
|
||
|
|
||
|
|
||
|
@interface ScanLineFilter : CIFilter {
|
||
|
NSNumber *inputOpacity;
|
||
|
CIImage *inputImage;
|
||
|
}
|
||
|
|
||
|
@end
|