diff options
| author | Jay Kwak <82421531+jkwak-work@users.noreply.github.com> | 2025-04-18 16:18:02 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-18 16:18:02 -0700 |
| commit | 591affaf733ec82d7b38a7bf9c4d2f49a69a2c66 (patch) | |
| tree | 89d5819114b0d40a4c927ed1185fcda0d94b5679 /tools/gfx/debug-layer/debug-device.cpp | |
| parent | a597a0358f2c2b8ec1b71b7959861658a2c06ecc (diff) | |
Check the available VK extensions before using CoopVec APIs in GFX (#6849)
* Check the available VK extensions before using CoopVec APIs in GFX
* Remove a redundant request for cooperative vector extension for vk
Diffstat (limited to 'tools/gfx/debug-layer/debug-device.cpp')
| -rw-r--r-- | tools/gfx/debug-layer/debug-device.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/gfx/debug-layer/debug-device.cpp b/tools/gfx/debug-layer/debug-device.cpp index c5798710a..2a3eb4c52 100644 --- a/tools/gfx/debug-layer/debug-device.cpp +++ b/tools/gfx/debug-layer/debug-device.cpp @@ -685,6 +685,14 @@ Result DebugDevice::getTextureRowAlignment(size_t* outAlignment) return baseObject->getTextureRowAlignment(outAlignment); } +Result DebugDevice::getCooperativeVectorProperties( + CooperativeVectorProperties* properties, + uint32_t* propertyCount) +{ + SLANG_GFX_API_FUNC; + return baseObject->getCooperativeVectorProperties(properties, propertyCount); +} + Result DebugDevice::createShaderTable(const IShaderTable::Desc& desc, IShaderTable** outTable) { SLANG_GFX_API_FUNC; |
