David Piuva 0bbabf38c5 Created an arena allocator for getting heap memory. 11 meses atrás
..
NoWindow.cpp fdbd1cdefb Introduced warnings and made it possible to override message handling. 2 anos atrás
README.md ebe02de342 Updated documentation, fixed text encoding and removed redundant text. 2 anos atrás
Win32Window.cpp 16007cd6f8 Explicitly overriding loadFromClipboard and saveToClipboard. 1 ano atrás
X11Window.cpp 0bbabf38c5 Created an arena allocator for getting heap memory. 11 meses atrás

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.