rsx: Minor texture/surface scanning optimization

- Also re-enable optimization in blit engine accidentally disabled during debugging
This commit is contained in:
kd-11 2019-05-11 18:31:49 +03:00 committed by kd-11
parent 9f0090772a
commit 3c7d8a1099
3 changed files with 66 additions and 57 deletions

View file

@ -810,7 +810,6 @@ namespace rsx
namespace nv3089
{
#pragma optimize("", off)
void image_in(thread *rsx, u32 _reg, u32 arg)
{
const rsx::blit_engine::transfer_operation operation = method_registers.blit_engine_operation();
@ -1191,7 +1190,6 @@ namespace rsx
std::memcpy(pixels_dst, swizzled_pixels, out_bpp * sw_width * sw_height);
}
}
#pragma optimize("", on)
}
namespace nv0039