Remove cg.lib from some files for Windows and renaming a function.

This commit is contained in:
Ryan Houdek
2012-12-26 00:07:43 -06:00
parent e9099459bb
commit f4e7a280a9
15 changed files with 23 additions and 23 deletions

View File

@ -29,7 +29,7 @@ class cInterfaceAGL : public cInterfaceBase
public:
void SwapBuffers();
void UpdateFPSDisplay(const char *Text);
bool CreateWindow(void *&window_handle);
bool Create(void *&window_handle);
bool MakeCurrent();
void Shutdown();
};

View File

@ -225,7 +225,7 @@ void cInterfaceEGL::SwapBuffers()
// Create rendering window.
// Call browser: Core.cpp:EmuThread() > main.cpp:Video_Initialize()
bool cInterfaceEGL::CreateWindow(void *&window_handle)
bool cInterfaceEGL::Create(void *&window_handle)
{
int _tx, _ty, _twidth, _theight;
Host_GetRenderWindowSize(_tx, _ty, _twidth, _theight);

View File

@ -35,7 +35,7 @@ private:
public:
void SwapBuffers();
void UpdateFPSDisplay(const char *Text);
bool CreateWindow(void *&window_handle);
bool Create(void *&window_handle);
bool MakeCurrent();
void Shutdown();
};

View File

@ -225,7 +225,7 @@ void cInterfaceGLX::SwapBuffers()
// Create rendering window.
// Call browser: Core.cpp:EmuThread() > main.cpp:Video_Initialize()
bool cInterfaceGLX::CreateWindow(void *&window_handle)
bool cInterfaceGLX::Create(void *&window_handle)
{
int _tx, _ty, _twidth, _theight;
Host_GetRenderWindowSize(_tx, _ty, _twidth, _theight);

View File

@ -33,7 +33,7 @@ private:
public:
void SwapBuffers();
void UpdateFPSDisplay(const char *Text);
bool CreateWindow(void *&window_handle);
bool Create(void *&window_handle);
bool MakeCurrent();
void Shutdown();
};

View File

@ -25,7 +25,7 @@ protected:
public:
virtual void SwapBuffers() = 0;
virtual void UpdateFPSDisplay(const char *Text) = 0;
virtual bool CreateWindow(void *&window_handle) = 0;
virtual bool Create(void *&window_handle) = 0;
virtual bool MakeCurrent() = 0;
virtual void Shutdown() = 0;

View File

@ -57,7 +57,7 @@ void cInterfaceWGL::UpdateFPSDisplay(const char *text)
// Create rendering window.
// Call browser: Core.cpp:EmuThread() > main.cpp:Video_Initialize()
bool cInterfaceWGL::CreateWindow(void *&window_handle)
bool cInterfaceWGL::Create(void *&window_handle)
{
int _tx, _ty, _twidth, _theight;
Host_GetRenderWindowSize(_tx, _ty, _twidth, _theight);

View File

@ -30,7 +30,7 @@ class cInterfaceWGL : public cInterfaceBase
public:
void SwapBuffers();
void UpdateFPSDisplay(const char *Text);
bool CreateWindow(void *&window_handle);
bool Create(void *&window_handle);
bool MakeCurrent();
void Shutdown();

View File

@ -35,7 +35,7 @@ void cInterfaceWX::UpdateFPSDisplay(const char *text)
// Create rendering window.
// Call browser: Core.cpp:EmuThread() > main.cpp:Video_Initialize()
bool cInterfaceWX::CreateWindow(void *&window_handle)
bool cInterfaceWX::Create(void *&window_handle)
{
int _tx, _ty, _twidth, _theight;
Host_GetRenderWindowSize(_tx, _ty, _twidth, _theight);

View File

@ -37,7 +37,7 @@ class cInterfaceWX : public cInterfaceBase
public:
void SwapBuffers();
void UpdateFPSDisplay(const char *Text);
bool CreateWindow(void *&window_handle);
bool Create(void *&window_handle);
bool MakeCurrent();
void Shutdown();