summaryrefslogtreecommitdiff
path: root/source/slang/slang-emit-hlsl.cpp
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2024-10-30 14:07:38 -0700
committerGitHub <noreply@github.com>2024-10-30 14:07:38 -0700
commit28f20f458c4f7f587556a1738d63b70e87c2b148 (patch)
treea3d4fbd77be026979fd5f9802dcbe01404e20396 /source/slang/slang-emit-hlsl.cpp
parentfeec3cf4354524e2badb3e3165fdf2a17c24597e (diff)
Write only texture types. (#5454)
* Add support for write-only textures. * Fix capabilities. * Fix implementation. * Fix. * format code --------- Co-authored-by: Ellie Hermaszewska <ellieh@nvidia.com> Co-authored-by: slangbot <186143334+slangbot@users.noreply.github.com>
Diffstat (limited to 'source/slang/slang-emit-hlsl.cpp')
-rw-r--r--source/slang/slang-emit-hlsl.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/slang/slang-emit-hlsl.cpp b/source/slang/slang-emit-hlsl.cpp
index 0b4ceed92..49ccc3c65 100644
--- a/source/slang/slang-emit-hlsl.cpp
+++ b/source/slang/slang-emit-hlsl.cpp
@@ -278,6 +278,8 @@ void HLSLSourceEmitter::_emitHLSLTextureType(IRTextureTypeBase* texType)
case SLANG_RESOURCE_ACCESS_READ_WRITE: m_writer->emit("RW"); break;
+ case SLANG_RESOURCE_ACCESS_WRITE: m_writer->emit("RW"); break;
+
case SLANG_RESOURCE_ACCESS_RASTER_ORDERED: m_writer->emit("RasterizerOrdered"); break;
case SLANG_RESOURCE_ACCESS_APPEND: m_writer->emit("Append"); break;