Xi Ma Chen

Results 9 comments of Xi Ma Chen

Never mind. The DLL version fails to compile with: ``` Severity Code Description Project File Line Suppression State Error LNK2019 unresolved external symbol __imp__invalid_parameter referenced in function "void __cdecl std::_Deallocate(void...

I'm sure this is a great library if someone actually gets it to link.

I made a quick patch to address this, but on Windows only: Windows/PeripheralBase.cpp: ``` PeripheralBase::PeripheralBase(advertising_data_t advertising_data) { identifier_ = advertising_data.identifier; address_ = advertising_data.mac_address; device_ = async_get( BluetoothLEDevice::FromBluetoothAddressAsync(_str_to_mac_address(advertising_data.mac_address))); manufacturer_data_ = advertising_data.manufacturer_data;...

Yes, was just a partial hack. Awaiting real solution.

Sorry, no DX demos planned for now :) Would be happy to take one as contribution! Not too much difference; one gotcha is that sample center is different vs openGL,...

haha agreed! sorry yeah demo is hastily put together. I'll format that better!

I vote that force disconnection is the right thing to add as an option here. In most applications, such as sensors, the user with the active intention program is the...

yeah we got a Vulkan engine that has ImGuizmo. It just uses regular imgui draw commands which we've already tapped into our low level enginer draw code.

@matthiascy ImGuizmo uses pure imgui drawlist, so if you imgui running in Vulkan means ImGuizmo running in Vulkan with literally no additional effort. One can simply use the Vulkan imgui...