Files
FreeJ/xcode/CIAlphaFade.h
xant afeecd415a - EffectsPanel is now dynamically created for each videoinput's instance
- Better lock management within cocoa objects
- CVScreen is now able to blit foreign frames (coming from not-cocoa
  layers)
- support for loading/execution of javascript sripts is back
2009-03-01 22:50:40 +01:00

22 lines
420 B
Objective-C

//
// CIAlphaFade.h
// freej
//
// Created by xant on 2/24/09.
// Copyright 2009 dyne.org. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#include <QuartzCore/QuartzCore.h>
@interface CIAlphaFade: CIFilter
{
CIImage *inputImage;
NSNumber *outputOpacity;
}
- (id)init;
- (NSDictionary *)customAttributes;
- (CIImage *)outputImage;
+ (void)initialize;
+ (CIFilter *)filterWithName: (NSString *)name;
@end