1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00

Remove obsolete MupenPlus API functions.

This commit is contained in:
Sergey Lipskiy 2014-10-01 12:10:32 +07:00
parent 279e2c9e65
commit 42838fffe7
3 changed files with 0 additions and 42 deletions

View File

@ -58,29 +58,4 @@ EXPORT void CALL ResizeVideoOutput(int Width, int Height)
api().ResizeVideoOutput(Width, Height);
}
EXPORT void CALL SetFrameSkipping(bool autoSkip, int maxSkips)
{
api().SetFrameSkipping(autoSkip, maxSkips);
}
EXPORT void CALL SetStretchVideo(bool stretch)
{
api().SetStretchVideo(stretch);
}
EXPORT void CALL StartGL()
{
api().StartGL();
}
EXPORT void CALL StopGL()
{
api().StopGL();
}
EXPORT void CALL ResizeGL(int width, int height)
{
api().ResizeGL(width, height);
}
} // extern "C"

View File

@ -62,8 +62,6 @@ public:
void FBWrite(unsigned int addr, unsigned int size) {}
void FBGetFrameBufferInfo(void * _p) {}
void ResizeVideoOutput(int _Width, int _Height) {}
void SetFrameSkipping(bool _autoSkip, int _maxSkips) {}
void SetStretchVideo(bool _stretch) {}
m64p_error PluginStartup(m64p_dynlib_handle _CoreLibHandle);
m64p_error PluginShutdown();
@ -75,9 +73,6 @@ public:
int * _Capabilities
);
void SetRenderingCallback(void (*callback)(int));
void StartGL();
void StopGL();
void ResizeGL(int _width, int _height);
#endif
static PluginAPI & get()

View File

@ -103,15 +103,3 @@ void PluginAPI::SetRenderingCallback(void (*callback)(int))
{
renderCallback = callback;
}
void PluginAPI::StartGL()
{
}
void PluginAPI::StopGL()
{
}
void PluginAPI::ResizeGL(int _width, int _height)
{
}