mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-10-15 23:23:38 +00:00
f18c3a6284
git-svn-id: svn://qnap.local/TwoTerm/trunk@2011 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
92 lines
2.7 KiB
Objective-C
92 lines
2.7 KiB
Objective-C
//
|
|
// ScanLineFilter.m
|
|
// 2Term
|
|
//
|
|
// Created by Kelvin Sherlock on 7/10/2010.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "ScanLineFilter.h"
|
|
|
|
#import <ApplicationServices/ApplicationServices.h>
|
|
|
|
|
|
@implementation ScanLineFilter
|
|
|
|
static CIKernel *_kernel = nil;
|
|
|
|
+(void)initialize
|
|
{
|
|
if (!_kernel)
|
|
{
|
|
|
|
NSError *err;
|
|
NSBundle *bundle = [NSBundle mainBundle];
|
|
NSString *path = [bundle pathForResource: @"ScanLineFilter" ofType: @"cikernel"];
|
|
NSString *code = [NSString stringWithContentsOfFile: path
|
|
encoding: NSUTF8StringEncoding
|
|
error: &err];
|
|
|
|
NSArray *array = [CIKernel kernelsWithString: code];
|
|
|
|
_kernel = [[array objectAtIndex: 0] retain];
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSDictionary *)customAttributes
|
|
{
|
|
return [NSDictionary dictionaryWithObjectsAndKeys:
|
|
|
|
|
|
[NSDictionary dictionaryWithObjectsAndKeys:
|
|
[NSNumber numberWithDouble: 0.00], kCIAttributeMin,
|
|
[NSNumber numberWithDouble: 0.00], kCIAttributeMax,
|
|
[NSNumber numberWithDouble: 0.00], kCIAttributeSliderMin,
|
|
[NSNumber numberWithDouble: 1.00], kCIAttributeSliderMax,
|
|
[NSNumber numberWithDouble: 0.00], kCIAttributeDefault,
|
|
[NSNumber numberWithDouble: 0.00], kCIAttributeIdentity,
|
|
kCIAttributeTypeDistance, kCIAttributeType,
|
|
nil], @"inputLighten",
|
|
|
|
[NSDictionary dictionaryWithObjectsAndKeys:
|
|
[NSNumber numberWithDouble: 0.00], kCIAttributeMin,
|
|
[NSNumber numberWithDouble: 0.00], kCIAttributeMax,
|
|
[NSNumber numberWithDouble: 0.00], kCIAttributeSliderMin,
|
|
[NSNumber numberWithDouble: 1.00], kCIAttributeSliderMax,
|
|
[NSNumber numberWithDouble: 0.80], kCIAttributeDefault,
|
|
[NSNumber numberWithDouble: 0.00], kCIAttributeIdentity,
|
|
kCIAttributeTypeDistance, kCIAttributeType,
|
|
nil], @"inputDarken",
|
|
|
|
nil];
|
|
}
|
|
|
|
|
|
// called when setting up for fragment program and also calls fragment program
|
|
- (CIImage *)outputImage
|
|
{
|
|
float l, d;
|
|
CISampler *src;
|
|
|
|
src = [CISampler samplerWithImage: inputImage];
|
|
|
|
l = [inputLighten floatValue];
|
|
d = [inputDarken floatValue];
|
|
|
|
if (l < 0) l = 0;
|
|
if (l > 1.0) l = 1.0;
|
|
|
|
if (d < 0) d = 0;
|
|
if (d > 1.0) d = 1.0;
|
|
|
|
return [self apply: _kernel, src, [NSNumber numberWithFloat: l], [NSNumber numberWithFloat: d], nil];
|
|
}
|
|
|
|
|
|
|
|
@end
|