Mesa (master): nouveau: replace Elements() with ARRAY_SIZE()

Brian Paul brianp at kemper.freedesktop.org
Mon Mar 2 16:02:50 UTC 2015


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

Author: Brian Paul <brianp at vmware.com>
Date:   Sat Feb 28 09:05:40 2015 -0700

nouveau: replace Elements() with ARRAY_SIZE()

Acked-by: Ilia Mirkin <imirkin at alum.mit.edu>

---

 src/mesa/drivers/dri/nouveau/nouveau_screen.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/mesa/drivers/dri/nouveau/nouveau_screen.c b/src/mesa/drivers/dri/nouveau/nouveau_screen.c
index 150dd8e..b9ae959 100644
--- a/src/mesa/drivers/dri/nouveau/nouveau_screen.c
+++ b/src/mesa/drivers/dri/nouveau/nouveau_screen.c
@@ -64,16 +64,16 @@ nouveau_get_configs(void)
 		GLX_NONE, GLX_SWAP_UNDEFINED_OML
 	};
 
-	for (i = 0; i < Elements(formats); i++) {
+	for (i = 0; i < ARRAY_SIZE(formats); i++) {
 		__DRIconfig **config;
 
 		config = driCreateConfigs(formats[i],
 					  depth_bits, stencil_bits,
-					  Elements(depth_bits),
+					  ARRAY_SIZE(depth_bits),
 					  back_buffer_modes,
-					  Elements(back_buffer_modes),
+					  ARRAY_SIZE(back_buffer_modes),
 					  msaa_samples,
-					  Elements(msaa_samples),
+					  ARRAY_SIZE(msaa_samples),
 					  GL_TRUE);
 		assert(config);
 




More information about the mesa-commit mailing list