More Android stub-outs and bug fixes. Fix broken SDL fiber sync.

This commit is contained in:
elasota
2020-10-10 02:42:06 -04:00
parent a2f19f5ccb
commit 5c98783bbb
63 changed files with 1445 additions and 635 deletions

View File

@@ -1,19 +1,21 @@
#pragma once
#pragma once
#include "EGpDisplayDriverType.h"
#include "EGpAudioDriverType.h"
#include "EGpFontHandlerType.h"
#include "EGpInputDriverType.h"
#include <stdint.h>
struct IGpLogDriver;
namespace PortabilityLayer
{
class HostSystemServices;
}
struct GpGlobalConfig
{
{
class HostSystemServices;
}
struct GpGlobalConfig
{
EGpDisplayDriverType m_displayDriverType;
EGpAudioDriverType m_audioDriverType;
EGpFontHandlerType m_fontHandlerType;
@@ -23,7 +25,7 @@ struct GpGlobalConfig
IGpLogDriver *m_logger;
PortabilityLayer::HostSystemServices *m_systemServices;
void *m_osGlobals;
};
extern GpGlobalConfig g_gpGlobalConfig;
void *m_osGlobals;
};
extern GpGlobalConfig g_gpGlobalConfig;