Added initial base for iteration with command buffer and experimetation with baseoperator

This commit is contained in:
Alejandro Saucedo 2020-08-16 18:09:56 +01:00
parent 0a1bfe0de8
commit 441efcd8dd
9 changed files with 294 additions and 17 deletions

View file

@ -1,15 +1,30 @@
#pragma once
#include <string>
#include <vulkan/vulkan.h>
#include <vulkan/vulkan.hpp>
namespace kp {
class BaseOperator
{
private:
public:
BaseOperator();
BaseOperator(vk::CommandBuffer* commandBuffer);
virtual ~BaseOperator();
void init(std::string one, std::string two);
void record();
private:
vk::Device* mDevice;
vk::CommandBuffer* mCommandBuffer;
};
} // End namespace kp