summaryrefslogtreecommitdiffstats
path: root/src/audio_core/stream.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-11-07 09:10:13 +0100
committerGitHub <noreply@github.com>2018-11-07 09:10:13 +0100
commite5a0a235538a12180d2c66c09aaddc0bcb76c8ea (patch)
treedabb121574ebf8618852e781ac7612d255f5cf2d /src/audio_core/stream.cpp
parentMerge pull request #1649 from degasus/split_resource_manager (diff)
parentgl_rasterizer_cache: Add profiles for Copy and Blit. (diff)
downloadyuzu-e5a0a235538a12180d2c66c09aaddc0bcb76c8ea.tar
yuzu-e5a0a235538a12180d2c66c09aaddc0bcb76c8ea.tar.gz
yuzu-e5a0a235538a12180d2c66c09aaddc0bcb76c8ea.tar.bz2
yuzu-e5a0a235538a12180d2c66c09aaddc0bcb76c8ea.tar.lz
yuzu-e5a0a235538a12180d2c66c09aaddc0bcb76c8ea.tar.xz
yuzu-e5a0a235538a12180d2c66c09aaddc0bcb76c8ea.tar.zst
yuzu-e5a0a235538a12180d2c66c09aaddc0bcb76c8ea.zip
Diffstat (limited to 'src/audio_core/stream.cpp')
-rw-r--r--src/audio_core/stream.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/audio_core/stream.cpp b/src/audio_core/stream.cpp
index 742a5e0a0..f35628e45 100644
--- a/src/audio_core/stream.cpp
+++ b/src/audio_core/stream.cpp
@@ -11,7 +11,6 @@
#include "audio_core/stream.h"
#include "common/assert.h"
#include "common/logging/log.h"
-#include "common/microprofile.h"
#include "core/core_timing.h"
#include "core/core_timing_util.h"
#include "core/settings.h"
@@ -104,10 +103,7 @@ void Stream::PlayNextBuffer() {
CoreTiming::ScheduleEventThreadsafe(GetBufferReleaseCycles(*active_buffer), release_event, {});
}
-MICROPROFILE_DEFINE(AudioOutput, "Audio", "ReleaseActiveBuffer", MP_RGB(100, 100, 255));
-
void Stream::ReleaseActiveBuffer() {
- MICROPROFILE_SCOPE(AudioOutput);
ASSERT(active_buffer);
released_buffers.push(std::move(active_buffer));
release_callback();