Formatted EVERYTHING
This commit is contained in:
@@ -1,40 +1,39 @@
|
||||
#pragma once
|
||||
#include "Enums.h"
|
||||
#include "Descriptor.h"
|
||||
#include "Enums.h"
|
||||
|
||||
namespace Seele
|
||||
{
|
||||
namespace Gfx
|
||||
{
|
||||
class VertexInput
|
||||
{
|
||||
public:
|
||||
|
||||
namespace Seele {
|
||||
namespace Gfx {
|
||||
class VertexInput {
|
||||
public:
|
||||
VertexInput(VertexInputStateCreateInfo createInfo);
|
||||
virtual ~VertexInput();
|
||||
const VertexInputStateCreateInfo& getInfo() const { return createInfo; }
|
||||
private:
|
||||
|
||||
private:
|
||||
VertexInputStateCreateInfo createInfo;
|
||||
};
|
||||
class GraphicsPipeline
|
||||
{
|
||||
public:
|
||||
class GraphicsPipeline {
|
||||
public:
|
||||
GraphicsPipeline(PPipelineLayout layout);
|
||||
virtual ~GraphicsPipeline();
|
||||
PPipelineLayout getPipelineLayout() const;
|
||||
protected:
|
||||
|
||||
protected:
|
||||
PPipelineLayout layout;
|
||||
};
|
||||
DEFINE_REF(GraphicsPipeline)
|
||||
|
||||
class ComputePipeline
|
||||
{
|
||||
public:
|
||||
class ComputePipeline {
|
||||
public:
|
||||
ComputePipeline(PPipelineLayout layout);
|
||||
virtual ~ComputePipeline();
|
||||
PPipelineLayout getPipelineLayout() const;
|
||||
protected:
|
||||
|
||||
protected:
|
||||
PPipelineLayout layout;
|
||||
};
|
||||
DEFINE_REF(ComputePipeline)
|
||||
}
|
||||
}
|
||||
} // namespace Gfx
|
||||
} // namespace Seele
|
||||
|
||||
Reference in New Issue
Block a user