yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
43e1b7cdc
master
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 : 17List < VkVertexInputAttributeDescription > m_attributeDescs ; 18List < VkVertexInputBindingDescription > m_streamDescs ; 19}; 20 21}// namespace vk 22}// namespace gfx