Thibault Hennequin

Results 7 issues of Thibault Hennequin

Simple way to create custom dialog box with ImGui and ImWindow. Example of use: ```cpp bool MyDialogBoxCallback(void* pUserData) { ImGui::Text((const char*)pUserData); if (ImGui::Button("Close")) return true; return false; } ImwWindowManager::GetInstance()->ShowDialogBox( MyDialogBoxCallback,...

enhancement

Add cubemap views: - Cross - Sphere

enhancement

Add simple settings system. Write an ini file in %appdata% if current working folder is not accessible. Exemple of setting in code ```c++ // Category, Name, Default Value, Min, Max...

enhancement

Add tool for generate texture from a shader.

enhancement

Add tool for picking the color of an pixel.

enhancement

Preload cursor at creation to avoid loading of cursor when event WM_SETCURSOR is called. > ::SetCursor(LoadCursor(NULL, IDC_ARROW)); To > m_pCusorArrow = LoadCursor(NULL, IDC_ARROW); > . . . >::SetCursor(m_pCursorArrow);

enhancement
Win32

Hi, I want to to se ``plm_buffer_create_with_callbacks`` for custom file loading, but ``plm_buffer_t`` struct is not usable without defining ``PL_MPEG_IMPLEMENTATION``. So I wandering if we can pass necessary informations (memory...