You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why we need to do it so?
I think we may and should avoid to do it because usually OpenGL API procedures initializes dynamically at runtime by requesting addresses to it after initializing context.
The text was updated successfully, but these errors were encountered:
It seems I found reasonable solution.
I suggest simply use GLAD for GL API calls.
The GLAD allows load addresses of GL procedures using external function, which can be provided from rust-side.
I hope that solution may help resolve my previous issue #80.
Are you welcome PRs?
I see that OpenGL library linking with nanovg-sys at compile time:
nanovg-rs/nanovg-sys/build.rs
Lines 20 to 23 in 5d85f76
Why we need to do it so?
I think we may and should avoid to do it because usually OpenGL API procedures initializes dynamically at runtime by requesting addresses to it after initializing context.
The text was updated successfully, but these errors were encountered: