Walnut
Walnut copied to clipboard
Walnut is a simple application framework for Vulkan and Dear ImGui apps
I seem to have found a memory-leak that occurs when an image is loaded from disk.
This PR adds support for building Walnut under Linux using CMake. The build configuration follows very closely the premake one. On the Walnut side the only thing missing was an...
These changes would allow for users to create a standalone ImGui window.
based off of the wonderful work done by @bernhardkaindl in https://github.com/TheCherno/Walnut/pull/11. will be paired with corresponding pull req in WalnutApp
I'm a beginner to c++ and graphics programming so I would love to use Walnut along with OpenGl, instead of Vulkan. Which files do I need to replace and modify...
After using the Diagnostic Tool of Microsoft Visual Studio it seems the memory allocation happen everytime when `m_FinalImage->SetData(m_Renderer.GetImageDataBuffer()->Get());` get called and the size of the allocation keep increasing everytime, I...
-error C4596: 'Reset': illegal qualified name in member declaration -error C4596: 'Elapsed': illegal qualified name in member declaration -error C4596: 'ElapsedMillis': illegal qualified name in member declaration
Feature Request: Expose GLFWwindow handle or otherwise allow means of registering certain callbacks
For example I want to handle drag & drop events in my app. This is easy to do with GLFW by calling `glfwSetDropCallback(handle, callback)`. But the window handle isn't currently...
I was curious on if it is possible to make main application be hidden or removed so only the ImGui windows are show.
I am loving Walnut - create application framework. I've run into an issue where when i try to resize an image, using the built-in method, my images are invisible -...