CubicSDR/src/visual/MeterContext.h

21 lines
429 B
C
Raw Normal View History

// Copyright (c) Charles J. Cliffe
// SPDX-License-Identifier: GPL-2.0+
2014-12-31 21:43:05 -05:00
#pragma once
#include "PrimaryGLContext.h"
#include "Gradient.h"
class MeterCanvas;
class MeterContext: public PrimaryGLContext {
public:
MeterContext(MeterCanvas *canvas, wxGLContext *sharedContext, wxGLContextAttrs *ctxAttrs);
2014-12-31 21:43:05 -05:00
void DrawBegin();
void Draw(float r, float g, float b, float a, float level);
void DrawEnd();
private:
};