glfw / glfw.github.io

Jekyll sources for GLFW website
https://www.glfw.org/
Other
28 stars 19 forks source link

New C++17 header-only wrapper #76

Closed janekb04 closed 3 years ago

janekb04 commented 3 years ago

Hi, I have created a header-only C++17 wrapper for GLFW 3.3. It is quite thin because I like thin wrappers and is as such different from the already linked GLFWM library. I am planning to add more examples to it and update to cover future versions of GLFW. Currently it is only missing functionality from glfw3native.h, which I plan to add soon. The library should be fairly stable, but I can't guarantee that there are no issues whatsoever. Language: C++ (17) Author: Jan Bielak GLFWPP

janekb04 commented 3 years ago

I think that adding this wrapper to the website would be useful as, at least I, always look for a C++ wrapper for a C library that I plan to include in my C++ projects. I usually prefer thin wrappers, such as this one, as it makes it easy to adopt them and switch from a C implementation.

siavashserver commented 3 years ago

Thank you very much!

janekb04 commented 3 years ago

Thanks