Age | Commit message (Collapse) | Author |
|
|
|
* src/vk/framebuffer.hpp: Move to this class all the framebuffers.
|
|
* src/vk/light.hpp: Move to this class, the descriptor sets used for
lighting by the 3D graphics pipelines.
|
|
* src/vk/render_pass.hpp: Both 2D pipelines used identical render
passes. I merged both in a single render pass.
* src/vk/renderer.cpp (Renderer::draw): Use only one render pass for
both 2D graphics pipelines.
|
|
* src/vk/descriptor_set_layout.hpp: Moving all descriptor sets in the
same class makes it easier to identify code duplication.
* src/vk/graphics_pipeline_2d_solid_layout.cpp,
src/vk/graphics_pipeline_2d_wired_layout.cpp,
src/vk/graphics_pipeline_3d_layout.cpp: Remove redundant descriptor
set layouts.
|
|
* src/vk/uniform_data_object.hpp: I do not remember why I named these
structs ODO. UDO makes more sense as they represents "uniform data
objects."
|
|
|