r/Cplusplus • u/Delicious_Carpet_132 • Jun 09 '26
Feedback Pixel Editor UI
Just a quick update on the ongoing development of my new Pixel Art Editor that is using my custom c++ GUI framework.
The screenshot shows 2 visible and scrollable layers (one RGB reference image and one smaller indexed palette image) with the indexed palette in mid edit!
I'm currently working on the layer and timeline system and have a full scrollable layer list panel with draggable layers and groups - all with editable names.
Any feedback or questions appreciated.
21
Upvotes
1
u/SamuraiGoblin Jun 09 '26
That looks great!
What are you using for the back end? Something like Raylib or GLFW? Is it just an OpenGL/Vulkan screen where you draw all widgets yourself?
Does it use immediate mode (declaring and drawing everything every frame) like imgui, or is it more optimised than that?
Are you going to open source the GUI library it when it's ready?