Daniel Collin

Results 148 issues of Daniel Collin

Given the following code ``` typedef struct { float t; } TestStruct; export uniform TestStruct test() { uniform TestStruct s; s.t = 1.0; return s; } ``` This gets generated...

Bugs
C/C++ Compatibility

Given the following code https://godbolt.org/z/nG8YdjTsf ``` void test_func(uniform uint16 start_index, uniform uint16 count) { uniform uint16 step = 4 * programIndex; uniform uint16 vertex_id = start_index; for (uniform int i...

Bugs
Good First Issue

Right now cmake is required for building the lib generated by `cpp_to_rust` an alternative would be to use the gcc crate instead which would remove the need for the user...

type: feature

Hi, I'm having trouble getting correct output with this program ```C #include #define MINIAUDIO_IMPLEMENTATION #define MA_DEBUG_OUTPUT #include "miniaudio.h" static float angle = 0.0f; #define STEREO void data_callback(ma_device* device, void* output,...

bug

Hi, First thanks for a great lib! When building for macOS I get the following warnings: I have Xcode 13.3 installed and my OS version is 12.3.1 ``` ./external/miniaudio.h:18038:19: warning:...

Implement a `dpi_scale() -> f32` function that returns the current DPI scale for the active monitor where the window is visible. Related to the following issues #226 #202 #221 Current...

enhancement

This crate has now been around for almost 4 years (Nov 22, 2015) so I guess it's time to start moving it towards 1.0 but before that there is some...

When resizing the window on Linux/X11 (Ubuntu, i3wm) there is lots of flickering. It would be nice to fix that

As brought up here https://github.com/emoon/rust_minifb/issues/91 It would be possible to add optional dear-imgui support to minifb https://github.com/Gekkio/imgui-rs if this is something people would like to see. The way it would...

Some people have problems with minifb being slow. While I haven't really encountered this myself I think adding support for OpenGL on Windows and Linux behind a feature gate will...

enhancement