Formatted EVERYTHING
This commit is contained in:
@@ -3,39 +3,18 @@
|
||||
using namespace Seele;
|
||||
using namespace Seele::Gfx;
|
||||
|
||||
VertexInput::VertexInput(VertexInputStateCreateInfo createInfo)
|
||||
: createInfo(createInfo)
|
||||
{
|
||||
}
|
||||
VertexInput::VertexInput(VertexInputStateCreateInfo createInfo) : createInfo(createInfo) {}
|
||||
|
||||
VertexInput::~VertexInput()
|
||||
{
|
||||
}
|
||||
VertexInput::~VertexInput() {}
|
||||
|
||||
GraphicsPipeline::GraphicsPipeline(PPipelineLayout layout)
|
||||
: layout(layout)
|
||||
{
|
||||
}
|
||||
GraphicsPipeline::GraphicsPipeline(PPipelineLayout layout) : layout(layout) {}
|
||||
|
||||
GraphicsPipeline::~GraphicsPipeline()
|
||||
{
|
||||
}
|
||||
GraphicsPipeline::~GraphicsPipeline() {}
|
||||
|
||||
PPipelineLayout GraphicsPipeline::getPipelineLayout() const
|
||||
{
|
||||
return layout;
|
||||
}
|
||||
PPipelineLayout GraphicsPipeline::getPipelineLayout() const { return layout; }
|
||||
|
||||
ComputePipeline::ComputePipeline(PPipelineLayout layout)
|
||||
: layout(layout)
|
||||
{
|
||||
}
|
||||
ComputePipeline::ComputePipeline(PPipelineLayout layout) : layout(layout) {}
|
||||
|
||||
ComputePipeline::~ComputePipeline()
|
||||
{
|
||||
}
|
||||
ComputePipeline::~ComputePipeline() {}
|
||||
|
||||
PPipelineLayout ComputePipeline::getPipelineLayout() const
|
||||
{
|
||||
return layout;
|
||||
}
|
||||
PPipelineLayout ComputePipeline::getPipelineLayout() const { return layout; }
|
||||
|
||||
Reference in New Issue
Block a user