From 345ee593e91e14173cbc08a647b008855b7638ca Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 25 Jun 2012 14:57:41 -0600 Subject: [PATCH] st/wgl: 80-column wrapping --- src/gallium/state_trackers/wgl/stw_context.c | 10 ++++++---- src/gallium/state_trackers/wgl/stw_ext_context.c | 9 ++++++--- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/src/gallium/state_trackers/wgl/stw_context.c b/src/gallium/state_trackers/wgl/stw_context.c index 7031af5bb3a..1488beebf12 100644 --- a/src/gallium/state_trackers/wgl/stw_context.c +++ b/src/gallium/state_trackers/wgl/stw_context.c @@ -126,7 +126,8 @@ DrvCreateLayerContext( HDC hdc, INT iLayerPlane ) { - return stw_create_context_attribs(hdc, iLayerPlane, 0, 1, 0, 0, WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB); + return stw_create_context_attribs(hdc, iLayerPlane, 0, 1, 0, 0, + WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB); } DHGLRC @@ -156,8 +157,8 @@ stw_create_context_attribs( return 0; /* - * GDI only knows about displayable pixel formats, so determine the pixel format - * from the framebuffer. + * GDI only knows about displayable pixel formats, so determine the pixel + * format from the framebuffer. * * TODO: Remove the GetPixelFormat() above, and stop relying on GDI. */ @@ -374,7 +375,8 @@ stw_make_current( /* Bind the new framebuffer */ ctx->hdc = hdc; - ret = stw_dev->stapi->make_current(stw_dev->stapi, ctx->st, fb->stfb, fb->stfb); + ret = stw_dev->stapi->make_current(stw_dev->stapi, ctx->st, + fb->stfb, fb->stfb); stw_framebuffer_reference(&ctx->current_framebuffer, fb); } else { ret = stw_dev->stapi->make_current(stw_dev->stapi, NULL, NULL, NULL); diff --git a/src/gallium/state_trackers/wgl/stw_ext_context.c b/src/gallium/state_trackers/wgl/stw_ext_context.c index a3470ac35a5..862d037be2c 100644 --- a/src/gallium/state_trackers/wgl/stw_ext_context.c +++ b/src/gallium/state_trackers/wgl/stw_ext_context.c @@ -102,7 +102,8 @@ wglCreateContextAttribsARB(HDC hDC, HGLRC hShareContext, const int *attribList) return NULL; } - if ((contextFlags & WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB) && majorVersion < 3) { + if ((contextFlags & WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB) && + majorVersion < 3) { SetLastError(ERROR_INVALID_VERSION_ARB); return NULL; } @@ -114,6 +115,8 @@ wglCreateContextAttribsARB(HDC hDC, HGLRC hShareContext, const int *attribList) return NULL; } - return (HGLRC) stw_create_context_attribs( hDC, layerPlane, (DHGLRC)(UINT_PTR)hShareContext, - majorVersion, minorVersion, contextFlags, profileMask ); + return (HGLRC) stw_create_context_attribs(hDC, layerPlane, + (DHGLRC) (UINT_PTR) hShareContext, + majorVersion, minorVersion, + contextFlags, profileMask); } -- 2.11.0