From 43e1b7cdc70b2fcac8a3e8ee72f5bc91726f4ec5 Mon Sep 17 00:00:00 2001 From: lucy96chen <47800040+lucy96chen@users.noreply.github.com> Date: Thu, 26 May 2022 10:54:35 -0700 Subject: Split render-vk.h/.cpp into a set of smaller files (#2244) * Some preliminary work on splitting render-vk * render-vk split, tests currently crash on null reference * fixed circular include --- tools/gfx/vulkan/vk-vertex-layout.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tools/gfx/vulkan/vk-vertex-layout.h (limited to 'tools/gfx/vulkan/vk-vertex-layout.h') diff --git a/tools/gfx/vulkan/vk-vertex-layout.h b/tools/gfx/vulkan/vk-vertex-layout.h new file mode 100644 index 000000000..9769a70bd --- /dev/null +++ b/tools/gfx/vulkan/vk-vertex-layout.h @@ -0,0 +1,22 @@ +// vk-vertex-layout.h +#pragma once + +#include "vk-base.h" + +namespace gfx +{ + +using namespace Slang; + +namespace vk +{ + +class InputLayoutImpl : public InputLayoutBase +{ +public: + List m_attributeDescs; + List m_streamDescs; +}; + +} // namespace vk +} // namespace gfx -- cgit v1.2.3