diff options
author | HampusM <hampus@hampusmat.com> | 2023-03-05 20:23:24 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-03-05 20:31:47 +0100 |
commit | 3f26d9e7ebadb145fde8d5dcc60429c7ba4c2399 (patch) | |
tree | 4b16a9111b1f911bd26ec0c636e6de4b80ea730c /src/repeat.rs | |
parent | 3d9c9d7ac68a439a29c8ad0a745a7e2a52234a44 (diff) |
refactor: clarify name of the gl_command replaced ident
Diffstat (limited to 'src/repeat.rs')
-rw-r--r-- | src/repeat.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/repeat.rs b/src/repeat.rs index fe7523c..668fefb 100644 --- a/src/repeat.rs +++ b/src/repeat.rs @@ -10,7 +10,7 @@ use crate::{ OPENGL_CMD_ARGS_REPLACE, OPENGL_CMD_ARG_NAMES_REPLACE, OPENGL_CMD_ARG_TYPES_REPLACE, - OPENGL_CMD_IDENT_REPLACE, + OPENGL_CMD_NAME_REPLACE, OPENGL_CMD_RET_TYPE_REPLACE, }; @@ -24,7 +24,7 @@ pub fn for_each_opengl_command_impl( .iter() .map(|gl_command| { let stream = input_stream.replace_ident( - &Ident::new(OPENGL_CMD_IDENT_REPLACE, Span::call_site()), + &Ident::new(OPENGL_CMD_NAME_REPLACE, Span::call_site()), &TokenTree::Ident(Ident::new( gl_command.prototype().name(), Span::call_site(), @@ -154,8 +154,8 @@ mod tests for_each_opengl_command_impl( "e! { unsafe { - functions::#ht gl_command = FunctionPtr::new_initialized( - get_proc_addr(stringify!(#ht gl_command)) + functions::#ht gl_command_name = FunctionPtr::new_initialized( + get_proc_addr(stringify!(#ht gl_command_name)) ); } }, @@ -185,7 +185,7 @@ mod tests assert_eq!( for_each_opengl_command_impl( "e! { - fn #ht gl_command(#ht gl_command_args) -> #ht gl_command_ret_type {} + fn #ht gl_command_name(#ht gl_command_args) -> #ht gl_command_ret_type {} }, ®istry, ) |