OSDN Git Service

st/wgl: 80-column wrapping
authorBrian Paul <brianp@vmware.com>
Mon, 25 Jun 2012 20:57:41 +0000 (14:57 -0600)
committerBrian Paul <brianp@vmware.com>
Mon, 25 Jun 2012 22:10:01 +0000 (16:10 -0600)
src/gallium/state_trackers/wgl/stw_context.c
src/gallium/state_trackers/wgl/stw_ext_context.c

index 7031af5..1488bee 100644 (file)
@@ -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);
index a3470ac..862d037 100644 (file)
@@ -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);
 }