Reformatted
This commit is contained in:
parent
49b436f490
commit
93041b4519
14 changed files with 133 additions and 127 deletions
|
|
@ -10,29 +10,29 @@
|
|||
|
||||
namespace kp {
|
||||
|
||||
BaseOp::BaseOp() {
|
||||
BaseOp::BaseOp() {}
|
||||
|
||||
}
|
||||
|
||||
BaseOp::BaseOp(std::shared_ptr<vk::CommandBuffer> commandBuffer) {
|
||||
BaseOp::BaseOp(std::shared_ptr<vk::CommandBuffer> commandBuffer)
|
||||
{
|
||||
SPDLOG_DEBUG("Compute BaseOp constructor started");
|
||||
this->mCommandBuffer = commandBuffer;
|
||||
}
|
||||
|
||||
BaseOp::~BaseOp() {
|
||||
BaseOp::~BaseOp()
|
||||
{
|
||||
SPDLOG_DEBUG("Compute BaseOp destructor started");
|
||||
|
||||
}
|
||||
|
||||
void BaseOp::init(std::string one, std::string two) {
|
||||
void
|
||||
BaseOp::init(std::string one, std::string two)
|
||||
{
|
||||
SPDLOG_DEBUG("Compute BaseOp init started");
|
||||
|
||||
}
|
||||
|
||||
void BaseOp::record() {
|
||||
void
|
||||
BaseOp::record()
|
||||
{
|
||||
SPDLOG_DEBUG("Compute BaseOp record started");
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue