grovesNL / glow

GL on Whatever: a set of bindings to run GL anywhere and avoid target-specific code
Apache License 2.0
1.2k stars 130 forks source link

debug_message_callback: use Fn instead of FnMut #295

Closed surban closed 4 months ago

surban commented 4 months ago

The callback may be called simultaneously from different threads. Thus it must use a non-mutable function.

Fixes #289