Files
Aerofoil/GpCommon/GpAudioDriverProperties.h

21 lines
335 B
C
Raw Permalink Normal View History

2019-12-21 18:40:17 -05:00
#pragma once
#include "EGpAudioDriverType.h"
struct IGpSystemServices;
2019-12-21 18:40:17 -05:00
struct IGpAudioDriver;
struct IGpLogDriver;
2021-04-28 01:46:07 -04:00
struct IGpAllocator;
2019-12-21 18:40:17 -05:00
struct GpAudioDriverProperties
{
EGpAudioDriverType m_type;
unsigned int m_sampleRate;
2019-12-21 18:40:17 -05:00
bool m_debug;
IGpLogDriver *m_logger;
IGpSystemServices *m_systemServices;
2021-04-28 01:46:07 -04:00
IGpAllocator *m_alloc;
2019-12-21 18:40:17 -05:00
};