本文整理汇总了C++中Stopwatch::ElapsedSeconds方法的典型用法代码示例。如果您正苦于以下问题:C++ Stopwatch::ElapsedSeconds方法的具体用法?C++ Stopwatch::ElapsedSeconds怎么用?C++ Stopwatch::ElapsedSeconds使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Stopwatch
的用法示例。
在下文中一共展示了Stopwatch::ElapsedSeconds方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main ( ) {
using namespace Furrovine;
using namespace Furrovine::Audio;
using namespace Furrovine::Pipeline;
//using namespace Furrovine::Graphics;
const static uint32 samplerate = 48000;
const static uint32 bitspersample = 16;
const static uint32 channelcount = 2;
PCMAudioData data = WavAudioLoader( )( "16bit.wav" );
AudioDevice baseaudiodevice( bitspersample, channelcount, samplerate );
RealtimeAudioDevice audiodevice( baseaudiodevice, milliseconds( 10 ) );
audiodevice.AddDSP( PerChannelDelay( audiodevice.PCMDescription( ), { seconds( 0.513 ), seconds( 0.490 ) }, real( 0.25 ) ) );
AudioBuffer buffer( data.Buffer(), 0, 0, 0, 0, 1 );
audiodevice.SubmitBuffer( buffer );
Stopwatch stopwatch;
stopwatch.Start( );
while ( true ) {
double seconds = stopwatch.ElapsedSeconds( );
if ( seconds < 1 )
continue;
//audiodevice.SubmitBuffer( buffer );
stopwatch.Restart( );
}
}