Home
last modified time | relevance | path

Searched refs:pDSB (Results 1 – 8 of 8) sorted by relevance

/dports/emulators/atari800/atari800-3.1.0/src/win32/
H A Dsound.c68 static LPDIRECTSOUNDBUFFER pDSB = NULL; variable
112 IDirectSoundBuffer_GetCaps(pDSB, &bc); in initsound_dx()
150 if (pDSB) in uninitsound_dx()
152 IDirectSoundBuffer_Stop(pDSB); in uninitsound_dx()
153 IDirectSoundBuffer_Release(pDSB); in uninitsound_dx()
154 pDSB = NULL; in uninitsound_dx()
206 if ((err = IDirectSoundBuffer_Lock(pDSB, in sound_update_dx()
534 if (!pDSB) in Sound_Pause()
536 IDirectSoundBuffer_Stop(pDSB); in Sound_Pause()
545 if (!pDSB) in Sound_Continue()
[all …]
/dports/devel/tokamak/tokamak_release/d3dapp/dxut/
H A DDXUTsound.cpp524 if( pDSB == NULL ) in FillBufferWithSound()
602 if( pDSB == NULL ) in RestoreBuffer()
619 hr = pDSB->Restore(); in RestoreBuffer()
712 LPDIRECTSOUNDBUFFER pDSB = GetFreeBuffer(); in Play() local
714 if( pDSB == NULL ) in Play()
730 pDSB->SetVolume( lVolume ); in Play()
736 pDSB->SetFrequency( lFrequency ); in Play()
741 pDSB->SetPan( lPan ); in Play()
762 LPDIRECTSOUNDBUFFER pDSB = GetFreeBuffer(); in Play3D() local
763 if( pDSB == NULL ) in Play3D()
[all …]
H A DDXUTsound.h66 HRESULT RestoreBuffer( LPDIRECTSOUNDBUFFER pDSB, BOOL* pbWasRestored );
73 HRESULT FillBufferWithSound( LPDIRECTSOUNDBUFFER pDSB, BOOL bRepeatWavIfBufferLarger );
/dports/games/d2x/d2x-0.2.5/arch/win32/d3dframe/
H A Ddsutil.h76 BOOL DSReloadSoundBuffer(IDirectSoundBuffer *pDSB, LPCTSTR lpName);
210 BOOL DSFillSoundBuffer(IDirectSoundBuffer *pDSB, BYTE *pbWaveData, DWORD dwWaveSize);
/dports/multimedia/qmmp-qt5/qmmp-1.5.2/src/plugins/Output/directsound/
H A Doutputdirectsound.cpp159 IDirectSoundBuffer *pDSB; in initialize() local
160 if((result = m_ds->CreateSoundBuffer(&bufferDesc, &pDSB, NULL)) != DS_OK) in initialize()
166 if((result = pDSB->QueryInterface(IID_IDirectSoundBuffer8, (void**)&m_dsBuffer)) != DS_OK) in initialize()
170 pDSB->Release(); in initialize()
/dports/astro/kstars/kstars-3.5.6/kstars/ekos/guide/
H A Dguide.cpp2120 QDoubleSpinBox *pDSB = nullptr; in syncSettings() local
2132 else if ((pDSB = qobject_cast<QDoubleSpinBox *>(obj))) in syncSettings()
2134 if (pDSB == opsGuide->spinBox_PropGainRA) in syncSettings()
2136 else if (pDSB == opsGuide->spinBox_PropGainDEC) in syncSettings()
2138 else if (pDSB == opsGuide->spinBox_IntGainRA) in syncSettings()
2139 Options::setRAIntegralGain(pDSB->value()); in syncSettings()
2140 else if (pDSB == opsGuide->spinBox_IntGainDEC) in syncSettings()
2141 Options::setDECIntegralGain(pDSB->value()); in syncSettings()
3302 QDoubleSpinBox *pDSB = nullptr; in setSettings() local
3318 if (value != pDSB->value()) in setSettings()
[all …]
/dports/astro/kstars/kstars-3.5.6/kstars/ekos/align/
H A Dalign.cpp3585 QDoubleSpinBox *pDSB = nullptr; in setSettings() local
3598 else if ((pDSB = qobject_cast<QDoubleSpinBox *>(widget))) in setSettings()
3600 const double value = settings[key].toDouble(pDSB->value()); in setSettings()
3601 if (value != pDSB->value()) in setSettings()
3603 pDSB->setValue(value); in setSettings()
/dports/astro/kstars/kstars-3.5.6/kstars/ekos/focus/
H A Dfocus.cpp4561 QDoubleSpinBox *pDSB = nullptr; in syncControl() local
4574 else if ((pDSB = qobject_cast<QDoubleSpinBox *>(widget))) in syncControl()
4576 const double value = settings[key].toDouble(pDSB->value()); in syncControl()
4577 if (value != pDSB->value()) in syncControl()
4579 pDSB->setValue(value); in syncControl()