David Piuva e258afcf35 Reapplying cursor visibility after replacing the X11 window by toggling full-screen mode. 2 years ago
..
NoWindow.cpp 70dc39885c Using CR-LF line endings in UTF-8 for source files. 5 years ago
README.md 3c4e7bc569 Beginning of public version history. 6 years ago
Win32Window.cpp 0437615866 Implemented method for setting the cursor position, with many warnings. 2 years ago
X11Window.cpp e258afcf35 Reapplying cursor visibility after replacing the X11 window by toggling full-screen mode. 2 years ago

README.md

Native

The native window implementation for a certain system should begin with the name of the library being linked, and continue with a postfix "Window.cpp". For example: Linking to "X11" using "-lX11" will look for "X11Window.cpp" for the code that implements the following constructor. std::shared_ptrdsr::BackendWindow createBackendWindow(const dsr::String& title, int width, int height);

If your application won't create any window, compile and link with NoWindow.cpp to get rid of all dependencies.