Update to experimental state in master :D #2

Merged
neuron303 merged 24 commits from master into master 2019-09-23 15:19:47 +02:00
4 changed files with 10 additions and 47 deletions
Showing only changes of commit ab2853475f - Show all commits

View File

@@ -1,8 +1,9 @@
#include "mainwindow.h"
#include "ui_mainwindow.h"
// system includes
#include <stdexcept>
// local includes
#include "audiodevice.h"
#include "debugtonegenerator.h"
// Qt includes
#include <QLabel>
@@ -11,9 +12,8 @@
#include <QSpinBox>
#include <QDebug>
// local includes
#include "audiodevice.h"
#include "debugtonegenerator.h"
// system includes
#include <stdexcept>
namespace {
constexpr int samplerates[] = { 44100, 48000, 96000, 192000 };

View File

@@ -1,14 +1,14 @@
#include "osciwidget.h"
// system includes
#include <cmath>
// Qt includes
#include <QLineF>
#include <QDebug>
#include <QPainter>
#include <QTimerEvent>
// system includes
#include <cmath>
OsciWidget::OsciWidget(QWidget *parent) :
QOpenGLWidget{parent},
m_redrawTimerId(startTimer(1000/m_fps))