mirror of
https://github.com/dyne/FreeJ.git
synced 2026-02-14 00:25:43 +01:00
- per-layer filter parameters are now restored correctly when moving the filterpanel between different layers - Various fixes and improvements in CVF0rLayer as well. - The FilterPanel now doesn't disappear when selecting a new filter. - Introduced the preliminary logic necessary to access geometry layers created through javascript
26 lines
477 B
Objective-C
26 lines
477 B
Objective-C
//
|
|
// CVPreview.h
|
|
// freej
|
|
//
|
|
// Created by xant on 5/16/09.
|
|
// Copyright 2009 dyne.org. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import <CVTexture.h>
|
|
#import <CFreeJ.h>
|
|
|
|
|
|
@interface CVPreview : NSOpenGLView {
|
|
CIContext *ciContext;
|
|
bool needsReshape;
|
|
NSRecursiveLock *lock;
|
|
CVTexture *texture;
|
|
IBOutlet CFreej *freej;
|
|
}
|
|
|
|
- (void)renderFrame:(CVTexture *)texture;
|
|
- (void)clear;
|
|
|
|
@end
|