[WIP] Refactor creation of descriptorsets

This commit is contained in:
2023-08-30 23:11:11 +02:00
parent 5aec41ead4
commit 93c75763c7
19 changed files with 201 additions and 173 deletions

View File

@@ -4,6 +4,8 @@
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#pragma once
#include "Renderer.hpp"
namespace openVulkanoCpp::Vulkan
@@ -23,5 +25,9 @@ namespace openVulkanoCpp::Vulkan
{}
void EncodeShader(Scene::Shader* shader);
void EncodeShader(VulkanShader* shader);
VulkanShader* GetShader() const { return m_lastShader; }
};
}