Dvad
Dvad
This adds methods to rotate the texture before display in handler_image. Rotation are multiple of 90degrees and can be set by using the `SetThetaQuarterTurn` method. This changes takes care of...
The constructor of HomogeneousPointProduct expects the three argument to have same type, this is currently not the case when Scalar is a Ceres Jet type.
this saves a useless normalization operation. Also this removes spurious changes of numerical behavior when one adapt a codebase to be compatible with both double and float from only one...
First of all, thank you for writing this wonderful library! I would like to propose this changes about the behavior of scrolling on plot. Before, scrolling was exclusively for zooming....
Implement clibpard feature using Xlib. This is a basic version which only supports utf8 target and the clibpoard selection. (not the selection + middle click workflow). Simplified adaptation of glfw...
This is the PR mentioned in https://github.com/floooh/sokol/pull/997 and is the last change I had locally that I would like to suggest upstream. ## What does this PR do? This commit...
The X11 clipboard getter is left non implemented currently : ``` SOKOL_API_IMPL const char* sapp_get_clipboard_string(void) { if (!_sapp.clipboard.enabled) { return ""; } #if defined(_SAPP_MACOS) return _sapp_macos_get_clipboard_string(); #elif defined(_SAPP_EMSCRIPTEN) return _sapp.clipboard.buffer;...