UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
IAudioMixerRenderStep.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6
7namespace Audio
8{
13 {
14 virtual ~IAudioMixerRenderStep() = default;
15
16 /* Do the work associated with this render step. */
17 virtual void DoRenderStep() = 0;
18
19 /* Get a name for this render step to display for debugging purposes. */
20 virtual const TCHAR* GetRenderStepName() = 0;
21 };
22
23}
FPlatformTypes::TCHAR TCHAR
Either ANSICHAR or WIDECHAR, depending on whether the platform supports wide characters or the requir...
Definition Platform.h:1135
NO_LOGGING.
Definition AudioMixerPlatformAndroid.cpp:53
Definition IAudioMixerRenderStep.h:13
virtual const TCHAR * GetRenderStepName()=0
virtual void DoRenderStep()=0
virtual ~IAudioMixerRenderStep()=default