summaryrefslogtreecommitdiffstats
path: root/tools/gfx/vulkan/vk-sampler.cpp
diff options
context:
space:
mode:
authorlucy96chen <47800040+lucy96chen@users.noreply.github.com>2022-05-26 10:54:35 -0700
committerGitHub <noreply@github.com>2022-05-26 10:54:35 -0700
commit43e1b7cdc70b2fcac8a3e8ee72f5bc91726f4ec5 (patch)
tree1e4701b4ab324a199b81e1f6c671f6660f1050c5 /tools/gfx/vulkan/vk-sampler.cpp
parent5ff4f42c636a67724523e4fe60697cfac64908cd (diff)
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
Diffstat (limited to 'tools/gfx/vulkan/vk-sampler.cpp')
-rw-r--r--tools/gfx/vulkan/vk-sampler.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/tools/gfx/vulkan/vk-sampler.cpp b/tools/gfx/vulkan/vk-sampler.cpp
new file mode 100644
index 000000000..e07cff753
--- /dev/null
+++ b/tools/gfx/vulkan/vk-sampler.cpp
@@ -0,0 +1,29 @@
+// vk-sampler.cpp
+#include "vk-sampler.h"
+
+namespace gfx
+{
+
+using namespace Slang;
+
+namespace vk
+{
+
+SamplerStateImpl::SamplerStateImpl(DeviceImpl* device)
+ : m_device(device)
+{}
+
+SamplerStateImpl::~SamplerStateImpl()
+{
+ m_device->m_api.vkDestroySampler(m_device->m_api.m_device, m_sampler, nullptr);
+}
+
+Result SamplerStateImpl::getNativeHandle(InteropHandle* outHandle)
+{
+ outHandle->api = InteropHandleAPI::Vulkan;
+ outHandle->handleValue = (uint64_t)(m_sampler);
+ return SLANG_OK;
+}
+
+} // namespace vk
+} // namespace gfx