Skip to content
Snippets Groups Projects
Commit 23d147e5 authored by Rémi Bernon's avatar Rémi Bernon :speech_balloon: Committed by Alexandre Julliard
Browse files

opengl32: Remove unnecessary function addresses.

parent 6f3e8682
No related branches found
No related tags found
No related merge requests found
...@@ -1237,24 +1237,24 @@ foreach (sort keys %ext_functions) ...@@ -1237,24 +1237,24 @@ foreach (sort keys %ext_functions)
print OUT "const unixlib_entry_t __wine_unix_call_funcs[] =\n"; print OUT "const unixlib_entry_t __wine_unix_call_funcs[] =\n";
print OUT "{\n"; print OUT "{\n";
print OUT " &process_attach,\n"; print OUT " process_attach,\n";
print OUT " &thread_attach,\n"; print OUT " thread_attach,\n";
print OUT " &process_detach,\n"; print OUT " process_detach,\n";
print OUT " &get_pixel_formats,\n"; print OUT " get_pixel_formats,\n";
foreach (sort keys %wgl_functions) foreach (sort keys %wgl_functions)
{ {
next if defined $manual_win_functions{$_}; next if defined $manual_win_functions{$_};
printf OUT " &wgl_%s,\n", $_; printf OUT " wgl_%s,\n", $_;
} }
foreach (sort keys %norm_functions) foreach (sort keys %norm_functions)
{ {
next if defined $manual_win_functions{$_}; next if defined $manual_win_functions{$_};
printf OUT " &gl_%s,\n", $_; printf OUT " gl_%s,\n", $_;
} }
foreach (sort keys %ext_functions) foreach (sort keys %ext_functions)
{ {
next if defined $manual_win_functions{$_}; next if defined $manual_win_functions{$_};
printf OUT " &ext_%s,\n", $_; printf OUT " ext_%s,\n", $_;
} }
print OUT "};\n"; print OUT "};\n";
print OUT "\n"; print OUT "\n";
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment