mirror of
https://github.com/dyne/FreeJ.git
synced 2026-02-18 02:25:56 +01:00
- 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
22 lines
420 B
Objective-C
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 |