mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-12-14 03:59:36 +00:00
More Android stub-outs and bug fixes. Fix broken SDL fiber sync.
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
#pragma once
|
||||
|
||||
enum EGpAudioDriverType
|
||||
{
|
||||
{
|
||||
EGpAudioDriverType_None,
|
||||
|
||||
EGpAudioDriverType_XAudio2,
|
||||
EGpAudioDriverType_SDL2,
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ class GpComPtr final
|
||||
{
|
||||
public:
|
||||
GpComPtr();
|
||||
const GpComPtr(const GpComPtr<T> &other);
|
||||
GpComPtr(const GpComPtr<T> &other);
|
||||
explicit GpComPtr(T *ptr);
|
||||
~GpComPtr();
|
||||
|
||||
|
||||
@@ -10,6 +10,11 @@ struct IGpFiber;
|
||||
struct IGpVOSEventQueue;
|
||||
struct IGpLogDriver;
|
||||
|
||||
namespace PortabilityLayer
|
||||
{
|
||||
class HostSystemServices;
|
||||
}
|
||||
|
||||
struct GpDisplayDriverProperties
|
||||
{
|
||||
typedef GpDisplayDriverTickStatus_t (*TickFunc_t)(void *context, IGpFiber *vosFiber);
|
||||
@@ -41,4 +46,5 @@ struct GpDisplayDriverProperties
|
||||
|
||||
IGpVOSEventQueue *m_eventQueue;
|
||||
IGpLogDriver *m_logger;
|
||||
PortabilityLayer::HostSystemServices *m_systemServices;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user