yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

lucy96chenSplit render-vk.h/.cpp into a set of smaller files (#2244)43e1b7cdc

master
332 B22 linesraw
1// vk-vertex-layout.h
2#pragma once
3
4#include "vk-base.h"
5
6namespace gfx
7{
8
9using namespace Slang;
10
11namespace vk
12{
13
14class InputLayoutImpl : public InputLayoutBase
15{
16public:
17    List<VkVertexInputAttributeDescription> m_attributeDescs;
18    List<VkVertexInputBindingDescription> m_streamDescs;
19};
20
21} // namespace vk
22} // namespace gfx