Cog/SpectrumViewLegacy.h
Christopher Snowhill 1728debe94 [Visualizer] Bring back CoreGraphics visualizer
For legacy systems that do not support Metal. The Metal SceneKit view
does work on even 10.13.6, if a Metal GPU is present in the system.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-06-08 21:32:52 -07:00

20 lines
308 B
Objective-C

//
// SpectrumViewLegacy.h
// Cog
//
// Created by Christopher Snowhill on 2/12/22.
//
#import <Cocoa/Cocoa.h>
#import "VisualizationController.h"
NS_ASSUME_NONNULL_BEGIN
@interface SpectrumViewLegacy : NSView
@property(nonatomic) BOOL isListening;
- (void)startPlayback;
@end
NS_ASSUME_NONNULL_END