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

This reverts commit 75596c07e0.
This commit is contained in:
Morph
2022-11-04 16:27:49 -04:00
parent 2489fef476
commit 748a8f5677
23 changed files with 52 additions and 224 deletions
@@ -48,10 +48,6 @@ void EmitBitCastU64F64(EmitContext& ctx, IR::Inst& inst, std::string_view value)
ctx.AddU64("{}=doubleBitsToUint64({});", inst, value);
}
void EmitBitCastS32F32(EmitContext& ctx, IR::Inst& inst, std::string_view value) {
ctx.AddF32("{}=ftoi({});", inst, value);
}
void EmitBitCastF16U16([[maybe_unused]] EmitContext& ctx, [[maybe_unused]] IR::Inst& inst) {
NotImplemented();
}