Started declaring graphics resources

This commit is contained in:
Dynamitos
2020-03-06 11:32:01 +01:00
parent 328edf5196
commit df3ed3c49e
8 changed files with 150 additions and 14 deletions
+108
View File
@@ -13,5 +13,113 @@ namespace Seele
const char* title;
bool bFullscreen;
};
class RenderCommandBase
{
};
DECLARE_REF(RenderCommandBase);
class DescriptorBinding
{
public:
DescriptorBinding()
: binding(0)
, descriptorType(VK_DESCRIPTOR_TYPE_MAX_ENUM)
, descriptorCount(-1)
, shaderStages(VK_SHADER_STAGE_ALL)
{}
DescriptorBinding(const DescriptorBinding& other)
: binding(other.binding)
, descriptorType(other.descriptorType)
, descriptorCount(other.descriptorCount)
, shaderStages(other.shaderStages)
{}
void operator=(const DescriptorBinding& other)
{
binding = other.binding;
descriptorType = other.descriptorType;
descriptorCount = other.descriptorCount;
shaderStages = other.shaderStages;
}
uint32_t binding;
//TODO make generic enum
VkDescriptorType descriptorType;
uint32_t descriptorCount;
VkShaderStageFlags shaderStages;
};
DECLARE_REF(DescriptorBinding);
class DescriptorAllocator
{
};
DECLARE_REF(DescriptorAllocator);
class DescriptorSet
{
};
DECLARE_REF(DescriptorSet);
class DescriptorLayout
{
};
DECLARE_REF(DescriptorLayout);
class PipelineLayout
{
};
DECLARE_REF(PipelineLayout);
class VertexDeclaration
{
};
DECLARE_REF(VertexDeclaration);
class GraphicsPipeline
{
};
DECLARE_REF(GraphicsPipeline);
class UniformBuffer
{
};
DECLARE_REF(UniformBuffer);
class Viewport
{
};
DECLARE_REF(Viewport);
class VertexBuffer
{
};
DECLARE_REF(VertexBuffer);
class IndexBuffer
{
};
DECLARE_REF(IndexBuffer);
class StructuredBuffer
{
};
DECLARE_REF(StructuredBuffer);
class Texture
{
};
DECLARE_REF(Texture);
class Texture2D : public Texture
{
};
DECLARE_REF(Texture2D);
class RenderPass
{
};
DECLARE_REF(RenderPass);
}