Renamed baseoperation for baseop
This commit is contained in:
parent
1ddd9f2bc4
commit
52ec836de8
4 changed files with 47 additions and 47 deletions
|
|
@ -1,30 +0,0 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
#include <vulkan/vulkan.h>
|
||||
#include <vulkan/vulkan.hpp>
|
||||
|
||||
namespace kp {
|
||||
|
||||
class BaseOperator
|
||||
{
|
||||
private:
|
||||
|
||||
|
||||
public:
|
||||
BaseOperator();
|
||||
BaseOperator(std::shared_ptr<vk::CommandBuffer> commandBuffer);
|
||||
virtual ~BaseOperator();
|
||||
|
||||
void init(std::string one, std::string two);
|
||||
void record();
|
||||
|
||||
private:
|
||||
std::shared_ptr<vk::Device> mDevice;
|
||||
std::shared_ptr<vk::CommandBuffer> mCommandBuffer;
|
||||
|
||||
};
|
||||
|
||||
} // End namespace kp
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue