From: Rémi Bernon <rbernon@codeweavers.com> --- libs/mesa/src/mapi/glapi/gen/api_exec_init.py | 2 +- libs/mesa/src/mapi/glapi/gen/gl_enums.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/mesa/src/mapi/glapi/gen/api_exec_init.py b/libs/mesa/src/mapi/glapi/gen/api_exec_init.py index 3372cf37eb0..fa01e5922e8 100644 --- a/libs/mesa/src/mapi/glapi/gen/api_exec_init.py +++ b/libs/mesa/src/mapi/glapi/gen/api_exec_init.py @@ -58,7 +58,7 @@ header = r"""/** * * This function depends on ctx->Version. * - * \param ctx GL context + * \\param ctx GL context */ void _mesa_init_dispatch(struct gl_context *ctx) diff --git a/libs/mesa/src/mapi/glapi/gen/gl_enums.py b/libs/mesa/src/mapi/glapi/gen/gl_enums.py index d880d882479..77bbb40b2ff 100644 --- a/libs/mesa/src/mapi/glapi/gen/gl_enums.py +++ b/libs/mesa/src/mapi/glapi/gen/gl_enums.py @@ -65,14 +65,14 @@ class PrintGlEnums(gl_XML.gl_print_base): typedef int (*cfunc)(const void *, const void *); /** - * Compare a key enum value to an element in the \c enum_string_table_offsets array. + * Compare a key enum value to an element in the \\c enum_string_table_offsets array. * - * \c bsearch always passes the key as the first parameter and the pointer + * \\c bsearch always passes the key as the first parameter and the pointer * to the array element as the second parameter. We can elimiate some * extra work by taking advantage of that fact. * - * \param a Pointer to the desired enum name. - * \param b Pointer into the \c enum_string_table_offsets array. + * \\param a Pointer to the desired enum name. + * \\param b Pointer into the \\c enum_string_table_offsets array. */ static int compar_nr( const int *a, enum_elt *b ) { -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10531