mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2026-01-17 02:55:35 -05:00
18 lines
298 B
C++
18 lines
298 B
C++
#pragma once
|
|
|
|
#include "PrimaryGLContext.h"
|
|
#include "Gradient.h"
|
|
|
|
#define NUM_WATERFALL_LINES 512
|
|
|
|
class ScopeCanvas;
|
|
|
|
class ScopeContext: public PrimaryGLContext {
|
|
public:
|
|
ScopeContext(ScopeCanvas *canvas, wxGLContext *sharedContext);
|
|
|
|
void Plot(std::vector<float> &points);
|
|
|
|
private:
|
|
};
|