summaryrefslogtreecommitdiff
path: root/src/blu_cat/gra/graphics_pipeline_2d_wired.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/blu_cat/gra/graphics_pipeline_2d_wired.hpp')
-rw-r--r--src/blu_cat/gra/graphics_pipeline_2d_wired.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/blu_cat/gra/graphics_pipeline_2d_wired.hpp b/src/blu_cat/gra/graphics_pipeline_2d_wired.hpp
index 7d2752e..9fc46c4 100644
--- a/src/blu_cat/gra/graphics_pipeline_2d_wired.hpp
+++ b/src/blu_cat/gra/graphics_pipeline_2d_wired.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.
@@ -20,7 +20,8 @@
#include <memory>
#include "vulkan.hpp"
-#include "view_2d.hpp"
+#include "command_pool.hpp"
+#include "destination_buffer.hpp"
namespace BluCat::GRA
{
@@ -37,9 +38,8 @@ struct GraphicsPipeline2DWired
~GraphicsPipeline2DWired();
void
- draw(std::shared_ptr<View2D> view, const VkCommandBuffer draw_command_buffer,
- const size_t current_frame, const size_t next_frame,
- const uint32_t image_index);
+ draw(const VkCommandBuffer draw_command_buffer, const size_t current_frame,
+ const size_t next_frame, const uint32_t image_index);
};
}