Renamed baseoperation for baseop
This commit is contained in:
parent
1ddd9f2bc4
commit
52ec836de8
4 changed files with 47 additions and 47 deletions
30
src/BaseOp.hpp
Normal file
30
src/BaseOp.hpp
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
#include <vulkan/vulkan.h>
|
||||
#include <vulkan/vulkan.hpp>
|
||||
|
||||
namespace kp {
|
||||
|
||||
class BaseOp
|
||||
{
|
||||
private:
|
||||
|
||||
|
||||
public:
|
||||
BaseOp();
|
||||
BaseOp(std::shared_ptr<vk::CommandBuffer> commandBuffer);
|
||||
virtual ~BaseOp();
|
||||
|
||||
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