summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/macros.h
diff options
context:
space:
mode:
authorFrancisco Jerez <currojerez@riseup.net>2015-02-10 15:37:47 +0200
committerFrancisco Jerez <currojerez@riseup.net>2015-02-10 15:37:47 +0200
commit818585b9f9ccd55b992e35f4d74120f0e879559f (patch)
treedbe2588bb57919327a1d70ff97b3afa4c6be1924 /src/mesa/main/macros.h
parent1e02f2badfd925739099bcfaa55ca99a484470d8 (diff)
downloadexternal_mesa3d-818585b9f9ccd55b992e35f4d74120f0e879559f.zip
external_mesa3d-818585b9f9ccd55b992e35f4d74120f0e879559f.tar.gz
external_mesa3d-818585b9f9ccd55b992e35f4d74120f0e879559f.tar.bz2
mesa: Rename the CEILING() macro to DIV_ROUND_UP().
Some people have complained that code using the CEILING() macro is difficult to understand because it's not immediately obvious what it is supposed to do until you go and look up its definition. Use a more descriptive name that matches the similar utility macro in the Linux kernel. Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/mesa/main/macros.h')
-rw-r--r--src/mesa/main/macros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/macros.h b/src/mesa/main/macros.h
index cd5f2d6..2d59c6f 100644
--- a/src/mesa/main/macros.h
+++ b/src/mesa/main/macros.h
@@ -808,7 +808,7 @@ DIFFERENT_SIGNS(GLfloat x, GLfloat y)
/** Compute ceiling of integer quotient of A divided by B. */
-#define CEILING( A, B ) ( (A) % (B) == 0 ? (A)/(B) : (A)/(B)+1 )
+#define DIV_ROUND_UP( A, B ) ( (A) % (B) == 0 ? (A)/(B) : (A)/(B)+1 )
/** casts to silence warnings with some compilers */