Module: Mesa Branch: master Commit: 440ab623417d1b03865fde7e3a008166fdf1ecd4 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=440ab623417d1b03865fde7e3a008166fdf1ecd4
Author: Eric Engestrom <[email protected]> Date: Mon Sep 4 13:51:53 2017 +0100 glx: use ARRAY_SIZE macro Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Jon Turney <[email protected]> --- src/glx/driwindows_glx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/glx/driwindows_glx.c b/src/glx/driwindows_glx.c index 02d95e7bfd..85525431bf 100644 --- a/src/glx/driwindows_glx.c +++ b/src/glx/driwindows_glx.c @@ -24,6 +24,7 @@ #include "glxclient.h" #include "glx_error.h" #include "dri_common.h" +#include "util/macros.h" #include "windows/xwindowsdri.h" #include "windows/windowsgl.h" @@ -427,7 +428,7 @@ driwindowsBindExtensions(struct driwindows_screen *psc) windows_extensions(&gl_extensions, &wgl_extensions); - for (i = 0; i < sizeof(extensionMap)/sizeof(extensionMap[0]); i++) { + for (i = 0; i < ARRAY_SIZE(extensionMap); i++) { if (strstr(wgl_extensions, extensionMap[i].wglext)) { __glXEnableDirectExtension(&psc->base, extensionMap[i].glxext); InfoMessageF("enabled %s\n", extensionMap[i].glxext); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
