[client/c-host] updated to use new LGMP naming conventions

This commit is contained in:
Geoffrey McRae
2020-01-10 11:00:46 +11:00
parent e7239c53fd
commit bea7c94cae
4 changed files with 24 additions and 24 deletions

View File

@@ -237,7 +237,7 @@ static int renderThread(void * unused)
static int cursorThread(void * unused)
{
LGMP_STATUS status;
PLGMPCQueue queue;
PLGMPClientQueue queue;
LG_RendererCursor cursorType = LG_CURSOR_COLOR;
lgWaitEvent(e_startup, TIMEOUT_INFINITE);
@@ -328,8 +328,8 @@ static int cursorThread(void * unused)
static int frameThread(void * unused)
{
LGMP_STATUS status;
PLGMPCQueue queue;
LGMP_STATUS status;
PLGMPClientQueue queue;
SDL_SetThreadPriority(SDL_THREAD_PRIORITY_HIGH);
lgWaitEvent(e_startup, TIMEOUT_INFINITE);

View File

@@ -60,8 +60,8 @@ struct AppState
struct IVSHMEM shm;
PLGMPClient lgmp;
PLGMPCQueue frameQueue;
PLGMPCQueue pointerQueue;
PLGMPClientQueue frameQueue;
PLGMPClientQueue pointerQueue;
uint64_t frameTime;
uint64_t lastFrameTime;