mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2026-06-19 06:08:38 -04:00
21 lines
376 B
C++
21 lines
376 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "PrimaryGLContext.h"
|
||
|
|
#include "GLPanel.h"
|
||
|
|
|
||
|
|
class UITestCanvas;
|
||
|
|
|
||
|
|
class UITestContext: public PrimaryGLContext {
|
||
|
|
public:
|
||
|
|
UITestContext(UITestCanvas *canvas, wxGLContext *sharedContext);
|
||
|
|
|
||
|
|
void DrawBegin();
|
||
|
|
void Draw();
|
||
|
|
void DrawEnd();
|
||
|
|
|
||
|
|
private:
|
||
|
|
GLPanel testPanel;
|
||
|
|
GLTestPanel testChildPanel;
|
||
|
|
GLPanel testChildPanel2;
|
||
|
|
};
|