Added initial base for iteration with command buffer and experimetation with baseoperator
This commit is contained in:
parent
0a1bfe0de8
commit
441efcd8dd
9 changed files with 294 additions and 17 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue