Files
FreeJ/xcode/CVPreview.h
xant 657a3bed03 Started improving the FilterPanel<->CVLayer interaction.
- 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
2009-06-07 23:58:56 +02:00

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