diff options
author | Brian <[email protected]> | 2007-01-30 08:09:25 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-01-30 08:09:25 -0700 |
commit | 8be177a694c6910781da25134ff52b6bd4c6a6e3 (patch) | |
tree | ffeac2fa879c53458ea6b65ac8d0b675a7e27a00 /src/mesa/main | |
parent | 832417f31e81b415894414621500b7aef328652b (diff) | |
parent | a4ddd64f3659b9db7719d3746c1469ece6bb44c5 (diff) |
s/params/pointer/ for glGetVertexAttribPointer
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/enums.c | 2 | ||||
-rw-r--r-- | src/mesa/main/imports.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/enums.c b/src/mesa/main/enums.c index fc56809e978..8c1b785aab3 100644 --- a/src/mesa/main/enums.c +++ b/src/mesa/main/enums.c @@ -3517,7 +3517,6 @@ static const enum_elt all_enums[1737] = static const unsigned reduced_enums[1277] = { - 30, /* GL_ALL_CLIENT_ATTRIB_BITS */ 435, /* GL_FALSE */ 643, /* GL_LINES */ 645, /* GL_LINE_LOOP */ @@ -4794,6 +4793,7 @@ static const unsigned reduced_enums[1277] = 1314, /* GL_SCISSOR_BIT */ 29, /* GL_ALL_ATTRIB_BITS */ 938, /* GL_MULTISAMPLE_BIT */ + 30, /* GL_ALL_CLIENT_ATTRIB_BITS */ }; #define Elements(x) sizeof(x)/sizeof(*x) diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index be2f04c1881..890d1a4e32e 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -578,7 +578,7 @@ _mesa_ffs(int i) /** * Find position of first bit set in given value. * XXX Warning: this function can only be used on 64-bit systems! - * \return position of lest significant bit set, starting at 1, return zero + * \return position of least-significant bit set, starting at 1, return zero * if no bits set. */ int |