summaryrefslogtreecommitdiffstats
path: root/tools/gfx/vulkan/vk-vertex-layout.h
blob: 9769a70bd8bdc973aa854a6fa322c1192fec6e42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// vk-vertex-layout.h
#pragma once

#include "vk-base.h"

namespace gfx
{

using namespace Slang;

namespace vk
{

class InputLayoutImpl : public InputLayoutBase
{
public:
    List<VkVertexInputAttributeDescription> m_attributeDescs;
    List<VkVertexInputBindingDescription> m_streamDescs;
};

} // namespace vk
} // namespace gfx