diff options
| author | Frederico Linhares <fred@linhares.blue> | 2025-06-21 16:51:22 -0300 |
|---|---|---|
| committer | Frederico Linhares <fred@linhares.blue> | 2025-06-21 16:51:22 -0300 |
| commit | 8bedf8a366cb6c1179bc89678c863517b9356d48 (patch) | |
| tree | 4a285592f804802d59f2af090113f607344ffdce /src/blu_cat/gra/graphics_pipeline_3d_skeletal.hpp | |
| parent | b3428170ac0a1837d3568f7b49312cbb01179f5d (diff) | |
refa Remove View2D
View2D is almost useless and add too much complexity for the engine,
so I am removing it.
Diffstat (limited to 'src/blu_cat/gra/graphics_pipeline_3d_skeletal.hpp')
| -rw-r--r-- | src/blu_cat/gra/graphics_pipeline_3d_skeletal.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/blu_cat/gra/graphics_pipeline_3d_skeletal.hpp b/src/blu_cat/gra/graphics_pipeline_3d_skeletal.hpp index bad117d..16d65b0 100644 --- a/src/blu_cat/gra/graphics_pipeline_3d_skeletal.hpp +++ b/src/blu_cat/gra/graphics_pipeline_3d_skeletal.hpp @@ -1,5 +1,5 @@ /* - * Copyright 2022-2024 Frederico de Oliveira Linhares + * Copyright 2022-2025 Frederico de Oliveira Linhares * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,7 +21,7 @@ #include "vulkan.hpp" #include "command_pool.hpp" -#include "view_3d.hpp" +#include "view.hpp" namespace BluCat::GRA { @@ -34,7 +34,7 @@ struct GraphicsPipeline3DSkeletal ~GraphicsPipeline3DSkeletal(); void - draw(std::shared_ptr<View3D> view, const VkCommandBuffer draw_command_buffer, + draw(std::shared_ptr<View> view, const VkCommandBuffer draw_command_buffer, const size_t current_frame, const uint32_t image_index); }; |
