video_core: Fix SNORM texture buffer emulating error (#9001)

This commit is contained in:
Feng Chen
2022-11-04 14:39:42 +08:00
committed by GitHub
parent ece22fcbc7
commit 75596c07e0
23 changed files with 224 additions and 52 deletions

View File

@ -18,6 +18,10 @@ void EmitBitCastU64F64(EmitContext&) {
throw NotImplementedException("SPIR-V Instruction");
}
void EmitBitCastS32F32(EmitContext&) {
throw NotImplementedException("SPIR-V Instruction");
}
void EmitBitCastF16U16(EmitContext&) {
throw NotImplementedException("SPIR-V Instruction");
}