summaryrefslogtreecommitdiff
path: root/plugins/peopsxgl/gpu.c
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-08-21 23:32:19 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-08-21 23:32:19 +0000
commit3480eebf5552abfc29d20ccfb8d78e04d5e342f2 (patch)
treec0dbe0bcce6cc9335be92e4ec0e6d915e1317384 /plugins/peopsxgl/gpu.c
parentde13f7dcbaa84255fa578aafe862f90c46225a01 (diff)
downloadpcsxr-3480eebf5552abfc29d20ccfb8d78e04d5e342f2.tar.gz
Fix compiling issue.
A few indentation changes in the Mac section of the XGL plug-in. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@86809 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins/peopsxgl/gpu.c')
-rwxr-xr-xplugins/peopsxgl/gpu.c36
1 files changed, 19 insertions, 17 deletions
diff --git a/plugins/peopsxgl/gpu.c b/plugins/peopsxgl/gpu.c
index d022d19e..fe5ed09f 100755
--- a/plugins/peopsxgl/gpu.c
+++ b/plugins/peopsxgl/gpu.c
@@ -1062,7 +1062,9 @@ extern char * pCaptionText;
long GPUopen(unsigned long * disp,char * CapText,char * CfgFile)
{
pCaptionText=CapText;
+#if !defined (_MACGL)
pConfigFile=CfgFile;
+#endif
ReadConfig(); // read text file for config
@@ -1070,11 +1072,11 @@ long GPUopen(unsigned long * disp,char * CapText,char * CfgFile)
bIsFirstFrame = TRUE; // we have to init later (well, no really... in Linux we do all in GPUopen)
- #if defined (_MACGL)
+#if defined (_MACGL)
unsigned long display = ulInitDisplay();
- #else
+#else
sysdep_create_display(); // create display
- #endif
+#endif
InitializeTextureStore(); // init texture mem
@@ -1086,11 +1088,11 @@ long GPUopen(unsigned long * disp,char * CapText,char * CfgFile)
if(disp)
{
- #if defined (_MACGL)
- *disp = display;
- #else
+#if defined (_MACGL)
+ *disp = display;
+#else
*disp=(unsigned long *)display; // return display ID to main emu
- #endif
+#endif
}
if(display) return 0;
@@ -1135,11 +1137,11 @@ long GPUclose() // LINUX CLOSE
if(pGfxCardScreen) free(pGfxCardScreen); // free helper memory
pGfxCardScreen=0;
- #if defined (_MACGL)
+#if defined (_MACGL)
CloseDisplay();
- #else
+#else
osd_close_display(); // destroy display
- #endif
+#endif
return 0;
}
@@ -1470,7 +1472,7 @@ void updateDisplay(void) // UPDATE DISPLAY
wglMakeCurrent(hdc,GLCONTEXT); // -> make context current again
#endif
#if defined (_MACGL)
- BringContextForward();
+ BringContextForward();
#endif
bFakeFrontBuffer=FALSE;
bRenderFrontBuffer=FALSE;
@@ -1562,7 +1564,7 @@ void updateDisplay(void) // UPDATE DISPLAY
#ifdef _WINDOWS
SwapBuffers(wglGetCurrentDC()); // -> to skip or not to skip
#elif defined(_MACGL)
- DoBufferSwap();
+ DoBufferSwap();
#else
glXSwapBuffers(display,window);
#endif
@@ -1581,7 +1583,7 @@ void updateDisplay(void) // UPDATE DISPLAY
#ifdef _WINDOWS
SwapBuffers(wglGetCurrentDC()); // -> swap
#elif defined(_MACGL)
- DoBufferSwap();
+ DoBufferSwap();
#else
glXSwapBuffers(display,window);
#endif
@@ -1707,9 +1709,9 @@ void updateFrontDisplay(void)
ReleaseDC(hWWindow,hdc); // -> ! important !
}
#elif defined (_MACGL)
-if (iDrawnSomething){
- DoBufferSwap();
- }
+ if (iDrawnSomething){
+ DoBufferSwap();
+ }
#else
if(iDrawnSomething) // linux:
glXSwapBuffers(display,window);
@@ -3146,7 +3148,7 @@ void CALLBACK GPUabout(void)
HWND hWP=GetActiveWindow(); // to be sure
DialogBox(hInst,MAKEINTRESOURCE(IDD_DIALOG_ABOUT), hWP,(DLGPROC)AboutDlgProc);
#elif defined(_MACGL)
- AboutDlgProc();
+ AboutDlgProc();
#else
StartCfgTool("about");
#endif