omar

Results 86 issues of omar

I was trying to find out if bx can be easily built by dropping the .cpp/.h file (or amalgated.cpp) into any MSVC project, and it looks like it would be...

Courtesy of PVS Studio: ``` implot_internal.h:532 | High | V730 | Not all members of a class (ImPlotTick) are initialized inside the constructor. Consider inspecting: PixelPos. implot_internal.h:885 | High |...

In my barebone VS2019 projects compiling this fails because `assert()` is unknown. You may either: - Use `IM_ASSERT()` (if imgui.h is included) - Include `` I would personally suggest the...

Followup to https://github.com/ocornut/imgui/pull/3038#issuecomment-769239232 We are planing (maybe around 1.82) to add support for spring span everywhere in Dear ImGui. This mean that strings won't need to be zero-terminated. This will...

### This is a thread to list paid jobs offered by businesses (e.g. game & non-game software developers) Although we love them, please do not post to recruit for hobbyist...

help wanted
news/info

I have been experimenting with making some (non-flags) enums use typed C++ enums. For a few types like `ImGuiKey` it seemed quite worthwhile are they are useful to see in...

I have pushed an experimental 'docking' branch: https://github.com/ocornut/imgui/tree/docking Effectively providing a long awaited official solution to the features discussed in #351 and #261. **TL;DR; You can benefit from good portion...

in progress
docking

May I suggest creating a separate repository to publish prebuilt gl3w.c/.h ? Running Python is an additional step that is pretty much in the way for most people willing to...

Figured out this may be helpful: https://github.com/ocornut/Str ``` Str Simple C++ string type with an optional local buffer, by Omar Cornut https://github.com/ocornut/str ``` Details after the link.

**Describe the bug** Apparently there's a division by zero in `stbtt__fill_active_edges_new()` on that line: ``` dy = (y_final - y_crossing ) / (x2 - (x1+1)); // if denom=0, y_final =...