mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
initial commit of hand merging, plus getting "ancient" waf script to work correctly
This commit is contained in:
parent
1d8bac08c0
commit
aaea166135
244 changed files with 131902 additions and 7357 deletions
26
libs/canvas/test/wave_view.h
Normal file
26
libs/canvas/test/wave_view.h
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#include <cppunit/TestFixture.h>
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
class WaveViewTest : public CppUnit::TestFixture
|
||||
{
|
||||
CPPUNIT_TEST_SUITE (WaveViewTest);
|
||||
CPPUNIT_TEST (all);
|
||||
CPPUNIT_TEST_SUITE_END ();
|
||||
|
||||
public:
|
||||
void setUp ();
|
||||
void all ();
|
||||
|
||||
private:
|
||||
void make_canvas ();
|
||||
void render_all_at_once ();
|
||||
void render_in_pieces ();
|
||||
void cache ();
|
||||
|
||||
ArdourCanvas::ImageCanvas* _canvas;
|
||||
ArdourCanvas::WaveView* _wave_view;
|
||||
boost::shared_ptr<ARDOUR::Region> _region;
|
||||
boost::shared_ptr<ARDOUR::AudioRegion> _audio_region;
|
||||
};
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue