Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
9dec34e
Initial plan
Copilot Jan 13, 2026
7735033
Add lighting, shadow mapping, shader manager, render pass, and post-p…
Copilot Jan 13, 2026
0270bd4
Add advanced texture support, compute shader utilities, and GPU-drive…
Copilot Jan 13, 2026
b48d071
Fix code review issues: add missing includes, fix stencil format, imp…
Copilot Jan 13, 2026
46c40df
Add implementation summary documentation
Copilot Jan 13, 2026
149c6bc
Rename AdvancedTexture to Texture for simplicity
Copilot Jan 13, 2026
8f35d69
Add ProfilerPanel and ShaderEditor for enhanced development tools
Copilot Jan 13, 2026
722321b
Enhance ImGui layer with profiler panel, shader editor, and custom st…
Copilot Jan 13, 2026
0a4de15
Remove unused shaders and layers
Jan 13, 2026
b8d285a
Enable automatic shader loading in Shader Editor from ShaderManager
Copilot Jan 13, 2026
d2f7afb
Add automatic shader loading in Shader Editor when Materials are created
Copilot Jan 13, 2026
ed82401
Fix build errors: use interface pattern to avoid circular dependencie…
Copilot Jan 13, 2026
e7c9581
Add StatsPanel and MaterialEditor with ImGui integration
Copilot Jan 13, 2026
c2af14f
Add comprehensive editor panels documentation
Copilot Jan 13, 2026
0072834
Implement live preview for editors, memory tracking system, and viewp…
Copilot Jan 13, 2026
45b46d4
Fix build errors: define OpenGL extension constants, use SetMat4 inst…
Copilot Jan 14, 2026
65fcd73
Add Model Viewer panel with real-time 3D preview and property inspection
Copilot Jan 14, 2026
6b15ecc
Fix build errors: add SetProjectionType to Camera, add DrawPreviewSph…
Copilot Jan 14, 2026
fa0721f
WIP: NFD + choc implemented + fixed shaders locations
Jan 14, 2026
819e131
Add FileSystem utility class with NFD integration for file dialogs an…
Copilot Jan 14, 2026
15172e4
Integrate FileSystem utility into editor panels for native file dialogs
Copilot Jan 14, 2026
1969a1f
Fix NFD-Extended API usage to match actual library interface
Copilot Jan 14, 2026
7f53c53
Fix Windows API macro conflicts and NFD pathSet declaration
Copilot Jan 14, 2026
ab05ec0
WIP: compiles, loads the model but doesnt preview it.
Jan 14, 2026
dea9504
WIP: added framebuffer class and changed the viewport
Jan 14, 2026
3260d62
Refactor editor panels to use new Framebuffer and Viewport classes pr…
Copilot Jan 14, 2026
74e9667
WIP: remove old framebuffer statements, and fixed some namespace prob…
Jan 14, 2026
bcf9fba
Add UniformBuffer support to ModelPanel and MaterialEditor for proper…
Copilot Jan 14, 2026
195b59c
Add preview mesh rendering (sphere/cube) to ModelPanel and MaterialEd…
Copilot Jan 14, 2026
71a7348
WIP: weird things happening with agent
Jan 14, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@
path = Core/vendor/tracy/tracy
url = https://github.com/wolfpld/tracy
branch = v0.9.1
[submodule "Core/vendor/NFD-Extended/NFD-Extended"]
path = Core/vendor/NFD-Extended/NFD-Extended
url = https://github.com/btzy/nativefiledialog-extended
83 changes: 0 additions & 83 deletions App/Resources/Shaders/Flame.frag.glsl

This file was deleted.

12 changes: 0 additions & 12 deletions App/Resources/Shaders/Fullscreen.vert.glsl

This file was deleted.

12 changes: 0 additions & 12 deletions App/Resources/Shaders/FullscreenQuad.vert.glsl

This file was deleted.

85 changes: 0 additions & 85 deletions App/Resources/Shaders/ProceduralFlame.frag.glsl

This file was deleted.

15 changes: 0 additions & 15 deletions App/Resources/Shaders/Texture.frag.glsl

This file was deleted.

14 changes: 0 additions & 14 deletions App/Resources/Shaders/Transform.vert.glsl

This file was deleted.

132 changes: 0 additions & 132 deletions App/Source/AppLayer.cpp

This file was deleted.

Loading