| 
									
										
										
										
											2015-05-24 06:55:12 +02:00
										 |  |  | // Copyright 2009 Dolphin Emulator Project
 | 
					
						
							| 
									
										
										
										
											2015-05-18 01:08:10 +02:00
										 |  |  | // Licensed under GPLv2+
 | 
					
						
							| 
									
										
										
										
											2013-04-17 23:29:41 -04:00
										 |  |  | // Refer to the license.txt file included.
 | 
					
						
							| 
									
										
										
										
											2010-06-09 01:37:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | #include "VideoBackends/Software/EfbCopy.h"
 | 
					
						
							| 
									
										
										
										
											2016-01-17 16:54:31 -05:00
										 |  |  | #include "Common/CommonTypes.h"
 | 
					
						
							|  |  |  | #include "Common/Logging/Log.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include "Core/HW/Memmap.h"
 | 
					
						
							|  |  |  | #include "VideoBackends/Software/EfbInterface.h"
 | 
					
						
							|  |  |  | #include "VideoBackends/Software/TextureEncoder.h"
 | 
					
						
							| 
									
										
										
										
											2015-10-09 20:50:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "VideoCommon/BPMemory.h"
 | 
					
						
							| 
									
										
										
										
											2014-07-08 16:49:33 +02:00
										 |  |  | #include "VideoCommon/Fifo.h"
 | 
					
						
							| 
									
										
										
										
											2010-06-09 01:37:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | static const float s_gammaLUT[] = {1.0f, 1.7f, 2.2f, 1.0f}; | 
					
						
							| 
									
										
										
										
											2013-08-20 23:51:39 +12:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-09 01:37:08 +00:00
										 |  |  | namespace EfbCopy | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | static void CopyToXfb(u32 xfbAddr, u32 fbWidth, u32 fbHeight, const EFBRectangle& sourceRc, | 
					
						
							|  |  |  |                       float Gamma) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-09-24 19:06:47 -04:00
										 |  |  |   DEBUG_LOG(VIDEO, "xfbaddr: %x, fbwidth: %i, fbheight: %i, source: (%i, %i, %i, %i), Gamma %f", | 
					
						
							|  |  |  |             xfbAddr, fbWidth, fbHeight, sourceRc.top, sourceRc.left, sourceRc.bottom, | 
					
						
							|  |  |  |             sourceRc.right, Gamma); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EfbInterface::yuv422_packed* xfb_in_ram = | 
					
						
							|  |  |  |       (EfbInterface::yuv422_packed*)Memory::GetPointer(xfbAddr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EfbInterface::CopyToXFB(xfb_in_ram, fbWidth, fbHeight, sourceRc, Gamma); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void CopyToRam() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   u8* dest_ptr = Memory::GetPointer(bpmem.copyTexDest << 5); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   TextureEncoder::Encode(dest_ptr); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ClearEfb() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   u32 clearColor = (bpmem.clearcolorAR & 0xff) << 24 | bpmem.clearcolorGB << 8 | | 
					
						
							|  |  |  |                    (bpmem.clearcolorAR & 0xff00) >> 8; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   int left = bpmem.copyTexSrcXY.x; | 
					
						
							|  |  |  |   int top = bpmem.copyTexSrcXY.y; | 
					
						
							|  |  |  |   int right = left + bpmem.copyTexSrcWH.x; | 
					
						
							|  |  |  |   int bottom = top + bpmem.copyTexSrcWH.y; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   for (u16 y = top; y <= bottom; y++) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     for (u16 x = left; x <= right; x++) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       EfbInterface::SetColor(x, y, (u8*)(&clearColor)); | 
					
						
							|  |  |  |       EfbInterface::SetDepth(x, y, bpmem.clearZValue); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CopyEfb() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   EFBRectangle rc; | 
					
						
							|  |  |  |   rc.left = (int)bpmem.copyTexSrcXY.x; | 
					
						
							|  |  |  |   rc.top = (int)bpmem.copyTexSrcXY.y; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // flipper represents the widths internally as last pixel minus starting pixel, so
 | 
					
						
							|  |  |  |   // these are zero indexed.
 | 
					
						
							|  |  |  |   rc.right = rc.left + (int)bpmem.copyTexSrcWH.x + 1; | 
					
						
							|  |  |  |   rc.bottom = rc.top + (int)bpmem.copyTexSrcWH.y + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-07 19:55:47 -07:00
										 |  |  |   if (bpmem.triggerEFBCopy.copy_to_xfb) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   { | 
					
						
							| 
									
										
										
										
											2016-10-07 19:55:47 -07:00
										 |  |  |     float yScale; | 
					
						
							|  |  |  |     if (bpmem.triggerEFBCopy.scale_invert) | 
					
						
							|  |  |  |       yScale = 256.0f / (float)bpmem.dispcopyyscale; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       yScale = (float)bpmem.dispcopyyscale / 256.0f; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-07 19:55:47 -07:00
										 |  |  |     float xfbLines = ((bpmem.copyTexSrcWH.y + 1.0f) * yScale); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-07 19:55:47 -07:00
										 |  |  |     if (yScale != 1.0) | 
					
						
							|  |  |  |       WARN_LOG(VIDEO, "yScale of %f is currently unsupported", yScale); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-07 19:55:47 -07:00
										 |  |  |     if ((u32)xfbLines > MAX_XFB_HEIGHT) | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-10-07 19:55:47 -07:00
										 |  |  |       INFO_LOG(VIDEO, "Tried to scale EFB to too many XFB lines (%f)", xfbLines); | 
					
						
							|  |  |  |       xfbLines = MAX_XFB_HEIGHT; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-10-07 19:55:47 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     CopyToXfb(bpmem.copyTexDest << 5, bpmem.copyMipMapStrideChannels << 4, (u32)xfbLines, rc, | 
					
						
							|  |  |  |               s_gammaLUT[bpmem.triggerEFBCopy.gamma]); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     CopyToRam();  // FIXME: should use the rectangle we have already created above
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-06-09 01:37:08 +00:00
										 |  |  | } |