remove EmitBufferAtomicIMin32 and Max32

This commit is contained in:
DanielSvoboda 2024-07-29 19:10:11 -03:00 committed by GitHub
parent e2bd5a03c3
commit a8c504d352
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -67,12 +67,4 @@ Id EmitImageAtomicExchange32(EmitContext& ctx, IR::Inst* inst, u32 handle, Id co
return ImageAtomicU32(ctx, inst, handle, coords, value, &Sirit::Module::OpAtomicExchange);
}
Id EmitBufferAtomicIMin32(EmitContext& ctx, IR::Inst* inst, u32 handle, Id coords, Id value) {
return ImageAtomicU32(ctx, inst, handle, coords, value, &Sirit::Module::OpAtomicSMin);
}
Id EmitBufferAtomicIMax32(EmitContext& ctx, IR::Inst* inst, u32 handle, Id coords, Id value) {
return ImageAtomicU32(ctx, inst, handle, coords, value, &Sirit::Module::OpAtomicSMax);
}
} // namespace Shader::Backend::SPIRV