Browse Source
Merge pull request #4723 from lioncash/typo
behavior_info: Fix typo Renerer -> Renderer
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
6 additions and
6 deletions
-
src/audio_core/behavior_info.cpp
-
src/audio_core/behavior_info.h
|
|
|
@ -57,15 +57,15 @@ bool BehaviorInfo::IsLongSizePreDelaySupported() const { |
|
|
|
return AudioCommon::IsRevisionSupported(3, user_revision); |
|
|
|
} |
|
|
|
|
|
|
|
bool BehaviorInfo::IsAudioRenererProcessingTimeLimit80PercentSupported() const { |
|
|
|
bool BehaviorInfo::IsAudioRendererProcessingTimeLimit80PercentSupported() const { |
|
|
|
return AudioCommon::IsRevisionSupported(5, user_revision); |
|
|
|
} |
|
|
|
|
|
|
|
bool BehaviorInfo::IsAudioRenererProcessingTimeLimit75PercentSupported() const { |
|
|
|
bool BehaviorInfo::IsAudioRendererProcessingTimeLimit75PercentSupported() const { |
|
|
|
return AudioCommon::IsRevisionSupported(4, user_revision); |
|
|
|
} |
|
|
|
|
|
|
|
bool BehaviorInfo::IsAudioRenererProcessingTimeLimit70PercentSupported() const { |
|
|
|
bool BehaviorInfo::IsAudioRendererProcessingTimeLimit70PercentSupported() const { |
|
|
|
return AudioCommon::IsRevisionSupported(1, user_revision); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -49,9 +49,9 @@ public: |
|
|
|
bool IsAdpcmLoopContextBugFixed() const; |
|
|
|
bool IsSplitterSupported() const; |
|
|
|
bool IsLongSizePreDelaySupported() const; |
|
|
|
bool IsAudioRenererProcessingTimeLimit80PercentSupported() const; |
|
|
|
bool IsAudioRenererProcessingTimeLimit75PercentSupported() const; |
|
|
|
bool IsAudioRenererProcessingTimeLimit70PercentSupported() const; |
|
|
|
bool IsAudioRendererProcessingTimeLimit80PercentSupported() const; |
|
|
|
bool IsAudioRendererProcessingTimeLimit75PercentSupported() const; |
|
|
|
bool IsAudioRendererProcessingTimeLimit70PercentSupported() const; |
|
|
|
bool IsElapsedFrameCountSupported() const; |
|
|
|
bool IsMemoryPoolForceMappingEnabled() const; |
|
|
|
bool IsFlushVoiceWaveBuffersSupported() const; |
|
|
|
|