From 0b4c81eac92ded4f7f656dad02dd747516d445c2 Mon Sep 17 00:00:00 2001 From: Oleg Romashin Date: Wed, 23 Jun 2010 04:02:12 -0400 Subject: [PATCH] Bug 560537 - Fix indent for EGL provider. r=bas.schouten. --HG-- extra : rebase_source : 5e2376f681dd4c638c111c74cc203c59df9c318a --- gfx/thebes/src/GLContextProviderEGL.cpp | 97 ++++++++++++------------- 1 file changed, 48 insertions(+), 49 deletions(-) diff --git a/gfx/thebes/src/GLContextProviderEGL.cpp b/gfx/thebes/src/GLContextProviderEGL.cpp index e6ff1f268bd..47a35e4a395 100644 --- a/gfx/thebes/src/GLContextProviderEGL.cpp +++ b/gfx/thebes/src/GLContextProviderEGL.cpp @@ -156,34 +156,33 @@ public: } } #define SYMBOL(name) \ - { (PRFuncPtr*) &f##name, { "egl" #name, NULL } } + { (PRFuncPtr*) &f##name, { "egl" #name, NULL } } - LibrarySymbolLoader::SymLoadStruct earlySymbols[] = { - SYMBOL(GetDisplay), - SYMBOL(GetCurrentContext), - SYMBOL(MakeCurrent), - SYMBOL(DestroyContext), - SYMBOL(CreateContext), - SYMBOL(DestroySurface), - SYMBOL(CreateWindowSurface), - SYMBOL(CreatePbufferSurface), - SYMBOL(CreatePixmapSurface), - SYMBOL(BindAPI), - SYMBOL(Initialize), - SYMBOL(ChooseConfig), - SYMBOL(GetError), - SYMBOL(GetConfigs), - SYMBOL(GetConfigAttrib), - SYMBOL(WaitNative), - SYMBOL(GetProcAddress), - { NULL, { NULL } } - }; - - if (!LibrarySymbolLoader::LoadSymbols(mEGLLibrary, &earlySymbols[0])) { - NS_WARNING("Couldn't find required entry points in EGL library (early init)"); - return PR_FALSE; - } + LibrarySymbolLoader::SymLoadStruct earlySymbols[] = { + SYMBOL(GetDisplay), + SYMBOL(GetCurrentContext), + SYMBOL(MakeCurrent), + SYMBOL(DestroyContext), + SYMBOL(CreateContext), + SYMBOL(DestroySurface), + SYMBOL(CreateWindowSurface), + SYMBOL(CreatePbufferSurface), + SYMBOL(CreatePixmapSurface), + SYMBOL(BindAPI), + SYMBOL(Initialize), + SYMBOL(ChooseConfig), + SYMBOL(GetError), + SYMBOL(GetConfigs), + SYMBOL(GetConfigAttrib), + SYMBOL(WaitNative), + SYMBOL(GetProcAddress), + { NULL, { NULL } } + }; + if (!LibrarySymbolLoader::LoadSymbols(mEGLLibrary, &earlySymbols[0])) { + NS_WARNING("Couldn't find required entry points in EGL library (early init)"); + return PR_FALSE; + } mInitialized = PR_TRUE; return PR_TRUE; @@ -197,15 +196,15 @@ private: class GLContextEGL : public GLContext { public: - GLContextEGL(EGLDisplay aDisplay, EGLConfig aConfig, + GLContextEGL(EGLDisplay aDisplay, EGLConfig aConfig, EGLSurface aSurface, EGLContext aContext) - : mDisplay(aDisplay), mConfig(aConfig), + : mDisplay(aDisplay), mConfig(aConfig), mSurface(aSurface), mContext(aContext){} ~GLContextEGL() { sEGLLibrary.fDestroyContext(mDisplay, mContext); - sEGLLibrary.fDestroySurface(mDisplay, mSurface); + sEGLLibrary.fDestroySurface(mDisplay, mSurface); } PRBool Init() @@ -221,15 +220,15 @@ public: PRBool MakeCurrent() { - PRBool succeeded = PR_TRUE; + PRBool succeeded = PR_TRUE; - // Assume that EGL has the same problem as WGL does, - // where MakeCurrent with an already-current context is - // still expensive. - if (sEGLLibrary.fGetCurrentContext() != mContext) { - succeeded = sEGLLibrary.fMakeCurrent(mDisplay, mSurface, mSurface, mContext); - NS_ASSERTION(succeeded, "Failed to make GL context current!"); - } + // Assume that EGL has the same problem as WGL does, + // where MakeCurrent with an already-current context is + // still expensive. + if (sEGLLibrary.fGetCurrentContext() != mContext) { + succeeded = sEGLLibrary.fMakeCurrent(mDisplay, mSurface, mSurface, mContext); + NS_ASSERTION(succeeded, "Failed to make GL context current!"); + } return succeeded; } @@ -247,7 +246,7 @@ public: return mContext; case NativePBuffer: - return mSurface; + return mSurface; default: return nsnull; @@ -311,14 +310,14 @@ GLContextProvider::CreateForWindow(nsIWidget *aWidget) context = sEGLLibrary.fCreateContext(display, config, 0, cxattribs); if (!context) { - sEGLLibrary.fDestroySurface(display, surface); + sEGLLibrary.fDestroySurface(display, surface); return nsnull; } nsRefPtr glContext = new GLContextEGL(display, config, surface, context); if (!glContext->Init()) - return nsnull; + return nsnull; return glContext.forget().get(); } @@ -337,7 +336,7 @@ GLContextProvider::CreatePBuffer(const gfxIntSize &aSize, const ContextFormat &a display = sEGLLibrary.fGetDisplay(EGL_DEFAULT_DISPLAY); if (!sEGLLibrary.fInitialize(display, NULL, NULL)) - return nsnull; + return nsnull; nsTArray attribs; @@ -363,12 +362,12 @@ GLContextProvider::CreatePBuffer(const gfxIntSize &aSize, const ContextFormat &a int numConfigs = 32; if (!sEGLLibrary.fChooseConfig(display, attribs.Elements(), - configs, numConfigs, - &numConfigs)) - return nsnull; + configs, numConfigs, + &numConfigs)) + return nsnull; if (numConfigs == 0) - return nsnull; + return nsnull; // shrug config = configs[0]; @@ -381,7 +380,7 @@ GLContextProvider::CreatePBuffer(const gfxIntSize &aSize, const ContextFormat &a surface = sEGLLibrary.fCreatePbufferSurface(display, config, pbattrs); if (!surface) - return nsnull; + return nsnull; sEGLLibrary.fBindAPI(LOCAL_EGL_OPENGL_ES_API); @@ -392,14 +391,14 @@ GLContextProvider::CreatePBuffer(const gfxIntSize &aSize, const ContextFormat &a context = sEGLLibrary.fCreateContext(display, config, EGL_NO_CONTEXT, cxattrs); if (!context) { - sEGLLibrary.fDestroySurface(display, surface); - return nsnull; + sEGLLibrary.fDestroySurface(display, surface); + return nsnull; } nsRefPtr glContext = new GLContextEGL(display, config, surface, context); if (!glContext->Init()) - return nsnull; + return nsnull; return glContext.forget().get(); }