summaryrefslogtreecommitdiff
path: root/source/slang/slang-emit-wgsl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-emit-wgsl.cpp')
-rw-r--r--source/slang/slang-emit-wgsl.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/slang/slang-emit-wgsl.cpp b/source/slang/slang-emit-wgsl.cpp
index 7c83b194d..d87cd06de 100644
--- a/source/slang/slang-emit-wgsl.cpp
+++ b/source/slang/slang-emit-wgsl.cpp
@@ -511,10 +511,6 @@ void WGSLSourceEmitter::emitSimpleTypeImpl(IRType* type)
case kIROp_UIntPtrType:
m_writer->emit("u64");
return;
- case kIROp_Int8x4PackedType:
- case kIROp_UInt8x4PackedType:
- m_writer->emit("u32");
- return;
case kIROp_StructType:
m_writer->emit(getName(type));
return;
@@ -967,8 +963,6 @@ void WGSLSourceEmitter::emitSimpleValueImpl(IRInst* inst)
return;
}
case BaseType::UInt:
- case BaseType::Int8x4Packed:
- case BaseType::UInt8x4Packed:
{
m_writer->emit("u32(");
m_writer->emit(UInt(uint32_t(litInst->value.intVal)));