Mesa (master): i965: Fix type of intel_update_image_buffers::format

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


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

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

i965: Fix type of intel_update_image_buffers::format

It's a mesa_format, not an unsigned int.

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

---

 src/mesa/drivers/dri/i965/brw_context.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c
index c815a0454d..adae921e57 100644
--- a/src/mesa/drivers/dri/i965/brw_context.c
+++ b/src/mesa/drivers/dri/i965/brw_context.c
@@ -1739,7 +1739,7 @@ intel_update_image_buffers(struct brw_context *brw, __DRIdrawable *drawable)
    struct intel_renderbuffer *front_rb;
    struct intel_renderbuffer *back_rb;
    struct __DRIimageList images;
-   unsigned int format;
+   mesa_format format;
    uint32_t buffer_mask = 0;
    int ret;
 




More information about the mesa-commit mailing list