dolphin/Source/Core/VideoBackends/Vulkan/VKVertexFormat.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
974 B
C
Raw Normal View History

2016-08-13 12:57:50 +00:00
// Copyright 2016 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2016-08-13 12:57:50 +00:00
#pragma once
#include <array>
#include "VideoBackends/Vulkan/Constants.h"
#include "VideoCommon/NativeVertexFormat.h"
namespace Vulkan
{
class VertexFormat : public ::NativeVertexFormat
{
public:
VertexFormat(const PortableVertexDeclaration& vtx_decl);
2016-08-13 12:57:50 +00:00
// Passed to pipeline state creation
2017-07-20 05:25:35 +00:00
const VkPipelineVertexInputStateCreateInfo& GetVertexInputStateInfo() const;
2016-08-13 12:57:50 +00:00
// Converting PortableVertexDeclaration -> Vulkan types
void MapAttributes();
void SetupInputState();
private:
void AddAttribute(uint32_t location, uint32_t binding, VkFormat format, uint32_t offset);
VkVertexInputBindingDescription m_binding_description = {};
std::array<VkVertexInputAttributeDescription, MAX_VERTEX_ATTRIBUTES> m_attribute_descriptions =
{};
VkPipelineVertexInputStateCreateInfo m_input_state_info = {};
uint32_t m_num_attributes = 0;
};
} // namespace Vulkan