summaryrefslogtreecommitdiff
path: root/tools/gfx/vulkan/render-vk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gfx/vulkan/render-vk.cpp')
-rw-r--r--tools/gfx/vulkan/render-vk.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/gfx/vulkan/render-vk.cpp b/tools/gfx/vulkan/render-vk.cpp
index 2a48e60d8..836e4e19e 100644
--- a/tools/gfx/vulkan/render-vk.cpp
+++ b/tools/gfx/vulkan/render-vk.cpp
@@ -3966,6 +3966,17 @@ public:
SLANG_UNUSED(countOffset);
SLANG_UNIMPLEMENTED_X("drawIndirect");
}
+
+ virtual SLANG_NO_THROW Result SLANG_MCALL setSamplePositions(
+ uint32_t samplesPerPixel,
+ uint32_t pixelCount,
+ const SamplePosition* samplePositions) override
+ {
+ SLANG_UNUSED(samplesPerPixel);
+ SLANG_UNUSED(pixelCount);
+ SLANG_UNUSED(samplePositions);
+ SLANG_UNIMPLEMENTED_X("setSamplePositions");
+ }
};
RefPtr<RenderCommandEncoder> m_renderCommandEncoder;
@@ -4333,6 +4344,17 @@ public:
SLANG_UNUSED(subResourceDataCount);
SLANG_UNIMPLEMENTED_X("uploadTextureData");
}
+
+ virtual SLANG_NO_THROW void SLANG_MCALL clearResourceView(
+ IResourceView* view,
+ ClearValue* clearValue,
+ ClearResourceViewFlags::Enum flags) override
+ {
+ SLANG_UNUSED(view);
+ SLANG_UNUSED(clearValue);
+ SLANG_UNUSED(flags);
+ SLANG_UNIMPLEMENTED_X("clearResourceView");
+ }
};
RefPtr<ResourceCommandEncoder> m_resourceCommandEncoder;