Module: Mesa Branch: master Commit: 746e82fff4c4d6ccd9535a84266be59fb40d069a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=746e82fff4c4d6ccd9535a84266be59fb40d069a
Author: Imre Deak <[email protected]> Date: Mon Sep 10 09:41:37 2012 +0300 mesa: glGet: fix indentation of _mesa_init_get_hash No functional change. Signed-off-by: Imre Deak <[email protected]> Signed-off-by: Brian Paul <[email protected]> --- src/mesa/main/get.c | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index 24d2a18..57457ef 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -1442,20 +1442,20 @@ void _mesa_init_get_hash(struct gl_context *ctx) for (i = 0; i < Elements(values); i++) { if (values[i].type == TYPE_API_MASK) { - api_mask = values[i].offset; - continue; + api_mask = values[i].offset; + continue; } if (!(api_mask & api_bit)) - continue; + continue; hash = (values[i].pname * prime_factor) & mask; while (1) { - index = hash & mask; - if (!table[index]) { - table[index] = i; - break; - } - hash += prime_step; + index = hash & mask; + if (!table[index]) { + table[index] = i; + break; + } + hash += prime_step; } } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
