Mesa (master): i965/dri: Combine declaration and assignment in intelCreateBuffer

Chad Versace chadversary at kemper.freedesktop.org
Tue May 30 19:05:19 UTC 2017


Module: Mesa
Branch: master
Commit: e8a0a5d7f90fc9e21fd6f47fbb3d12765d5bb8fd
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=e8a0a5d7f90fc9e21fd6f47fbb3d12765d5bb8fd

Author: Chad Versace <chadversary at chromium.org>
Date:   Tue May 23 16:07:10 2017 -0700

i965/dri: Combine declaration and assignment in intelCreateBuffer

Trivial cleanup.

Reviewed-by: Tapani Pälli <tapani.palli at intel.com>

---

 src/mesa/drivers/dri/i965/intel_screen.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/intel_screen.c b/src/mesa/drivers/dri/i965/intel_screen.c
index 5de6f18b84..24123e7986 100644
--- a/src/mesa/drivers/dri/i965/intel_screen.c
+++ b/src/mesa/drivers/dri/i965/intel_screen.c
@@ -1169,12 +1169,11 @@ intelCreateBuffer(__DRIscreen *dri_screen,
    mesa_format rgbFormat;
    unsigned num_samples =
       intel_quantize_num_samples(screen, mesaVis->samples);
-   struct gl_framebuffer *fb;
 
    if (isPixmap)
       return false;
 
-   fb = CALLOC_STRUCT(gl_framebuffer);
+   struct gl_framebuffer *fb = CALLOC_STRUCT(gl_framebuffer);
    if (!fb)
       return false;
 




More information about the mesa-commit mailing list