2016-08-13 06:57:50 -06:00
|
|
|
// Copyright 2016 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2016-08-13 06:57:50 -06:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <array>
|
|
|
|
|
|
|
|
#include "VideoBackends/Vulkan/Constants.h"
|
|
|
|
#include "VideoCommon/NativeVertexFormat.h"
|
|
|
|
|
2022-10-11 15:23:38 -06:00
|
|
|
enum class ShaderAttrib : u32;
|
|
|
|
|
2016-08-13 06:57:50 -06:00
|
|
|
namespace Vulkan
|
|
|
|
{
|
|
|
|
class VertexFormat : public ::NativeVertexFormat
|
|
|
|
{
|
|
|
|
public:
|
2019-02-14 18:59:50 -07:00
|
|
|
VertexFormat(const PortableVertexDeclaration& vtx_decl);
|
2016-08-13 06:57:50 -06:00
|
|
|
|
|
|
|
// Passed to pipeline state creation
|
2017-07-19 23:25:35 -06:00
|
|
|
const VkPipelineVertexInputStateCreateInfo& GetVertexInputStateInfo() const;
|
2016-08-13 06:57:50 -06:00
|
|
|
|
|
|
|
// Converting PortableVertexDeclaration -> Vulkan types
|
|
|
|
void MapAttributes();
|
|
|
|
void SetupInputState();
|
|
|
|
|
|
|
|
private:
|
2022-10-11 15:23:38 -06:00
|
|
|
void AddAttribute(ShaderAttrib location, uint32_t binding, VkFormat format, uint32_t offset);
|
2016-08-13 06:57:50 -06:00
|
|
|
|
|
|
|
VkVertexInputBindingDescription m_binding_description = {};
|
|
|
|
|
|
|
|
std::array<VkVertexInputAttributeDescription, MAX_VERTEX_ATTRIBUTES> m_attribute_descriptions =
|
|
|
|
{};
|
|
|
|
|
|
|
|
VkPipelineVertexInputStateCreateInfo m_input_state_info = {};
|
|
|
|
|
|
|
|
uint32_t m_num_attributes = 0;
|
|
|
|
};
|
2019-02-14 18:59:50 -07:00
|
|
|
} // namespace Vulkan
|