コード例 #1
0
ファイル: SimpleAudioEngine.cpp プロジェクト: uvbs/HHHH
void SimpleAudioEngine::unloadEffect(const char* pszFilePath)
{
    if (s_bI9100)
    {
        SimpleAudioEngineOpenSL::sharedEngine()->unloadEffect(pszFilePath);
    }
    else
    {
        unloadEffectJNI(pszFilePath);
    }
}
コード例 #2
0
void SimpleAudioEngine::unloadEffect(const char* pszFilePath)
{
	std::string fullPath = getFullPathWithoutAssetsPrefix(pszFilePath);

	if (s_bI9100)
	{
		SimpleAudioEngineOpenSL::sharedEngine()->unloadEffect(fullPath.c_str());
	}
	else
	{
		unloadEffectJNI(fullPath.c_str());
	}
}
コード例 #3
0
	void SimpleAudioEngine::unloadEffect(const char* pszFilePath)
	{
		unloadEffectJNI(pszFilePath);
	}