feat(plugin): integration of Window and VkWrapper plugin systems for Core#116
Merged
feat(plugin): integration of Window and VkWrapper plugin systems for Core#116
Conversation
…on and texture addition
…ucture for improved compatibility
… and event management
…and refactor resource access
0b512c5 to
d143240
Compare
c85fe66 to
10c2a41
Compare
50ba191 to
6c80192
Compare
ripel2
approved these changes
Mar 14, 2025
|
Miou-zora
approved these changes
Mar 14, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Status:
Related to:
Required to be merged before:
Window System:
Description:
This pull request adds the implementation of Window systems, intended for use by the Engine² Core, which is based on an ECS. These systems enable windows to be created, configured and managed via GLFW.
Changes made:
CreateGLFWWindowto create a GLFW window and save it as a resource.GLFWEnableVSyncto enable vertical synchronization.PollEventsto manage window events.UpdateKeyto detect keyboard input and close the window withECHAP.VkWrapper System:
Description:
This pull request adds the implementation of VkWrapper systems, intended for use by the Engine² Core, which is based on an ECS. These systems are used to initialize, configure and manage the display via Vulkan.
Changes made:
InitVkWrapperto initialize and register the Vulkan wrapper.AddTextureAndModelto load and associate a texture and a model.AddShadersto load shaders.CreatePipelineto create a graphics pipeline.ChangeClearColorto change the background color.DisplayConfigsto display available configurations and extensions.DrawFrameto manage frame-by-frame display.Destroyto clean up Vulkan resources correctly.