Module: Mesa Branch: master Commit: 5b6a1aee4674d24d57fbbaac86619e429bd031e5 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=5b6a1aee4674d24d57fbbaac86619e429bd031e5
Author: Dave Airlie <[email protected]> Date: Tue Apr 26 07:59:44 2016 +1000 r600: fix missing include for Elements macro This got removed from u_blitter.h and we were taking it from there, this should just move to ARRAY_SIZE eventually. Signed-off-by: Dave Airlie <[email protected]> --- src/gallium/drivers/r600/r600_pipe.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h index 7793859..4d16223 100644 --- a/src/gallium/drivers/r600/r600_pipe.h +++ b/src/gallium/drivers/r600/r600_pipe.h @@ -33,6 +33,7 @@ #include "util/u_suballoc.h" #include "util/list.h" #include "util/u_transfer.h" +#include "util/u_memory.h" #include "tgsi/tgsi_scan.h" _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
