mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
experimental multi-core support on linux
- Input seems not to work for some reason (please check and tell me if it's not only me) - Skip frames is not supported Report to me of other problems git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@740 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -5,10 +5,12 @@
|
||||
#ifndef _VIDEO_H_INCLUDED__
|
||||
#define _VIDEO_H_INCLUDED__
|
||||
|
||||
#include "Thread.h"
|
||||
#include "PluginSpecs.h"
|
||||
|
||||
#include "ExportProlog.h"
|
||||
|
||||
|
||||
typedef void (*TSetPEToken)(const unsigned short _token, const int _bSetTokenAcknowledge);
|
||||
typedef void (*TSetPEFinish)(void);
|
||||
typedef unsigned char* (*TGetMemoryPointer)(const unsigned int _iAddress);
|
||||
@ -40,6 +42,8 @@ typedef struct
|
||||
volatile bool bPauseRead;
|
||||
#ifdef _WIN32
|
||||
CRITICAL_SECTION sync;
|
||||
#else
|
||||
Common::CriticalSection *sync;
|
||||
#endif
|
||||
} SCPFifoStruct;
|
||||
|
||||
|
Reference in New Issue
Block a user