Formatted EVERYTHING

This commit is contained in:
Dynamitos
2024-06-09 12:20:53 +02:00
parent f18bf8acbe
commit d95dab850c
265 changed files with 8002 additions and 12310 deletions
+18 -19
View File
@@ -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