From 0a94b86cb8a784db15f34f091b85f50d8f79fdd7 Mon Sep 17 00:00:00 2001 From: Triang3l Date: Mon, 18 Jul 2022 21:02:07 +0300 Subject: [PATCH] [GPU] Remove orphaned GetPresentArea declaration [ci skip] --- src/xenia/gpu/draw_util.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/xenia/gpu/draw_util.h b/src/xenia/gpu/draw_util.h index a022b05a6..a365b5436 100644 --- a/src/xenia/gpu/draw_util.h +++ b/src/xenia/gpu/draw_util.h @@ -603,14 +603,6 @@ bool GetResolveInfo(const RegisterFile& regs, const Memory& memory, bool fixed_rgba16_truncated_to_minus_1_to_1, ResolveInfo& info_out); -// Taking user configuration - stretching or letterboxing, overscan region to -// crop to fill while maintaining the aspect ratio - into account, returns the -// area where the frame should be presented in the host window. -void GetPresentArea(uint32_t source_width, uint32_t source_height, - uint32_t window_width, uint32_t window_height, - int32_t& target_x_out, int32_t& target_y_out, - uint32_t& target_width_out, uint32_t& target_height_out); - } // namespace draw_util } // namespace gpu } // namespace xe