Revision 7292edbd3eba3da7e8490ad19169a7d18283057a authored by Sai Praveen Bangaru on 24 March 2023, 23:50:51 UTC, committed by GitHub on 24 March 2023, 23:50:51 UTC
* Added higher-order differentiability decorators for built-ins + preliminary tests

* Update diff.meta.slang
1 parent e794de0
Raw File
vk-vertex-layout.h
// 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
back to top