mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Merge pull request #2315 from JamePeng/fix-gsp_gpu-code
Minor amendment of GSP_GPU::ImportDisplayCaptureInfo code
This commit is contained in:
		
						commit
						da995a4377
					
				
					 1 changed files with 5 additions and 3 deletions
				
			
		|  | @ -636,6 +636,7 @@ static void TriggerCmdReqQueue(Interface* self) { | ||||||
|  *  Inputs: |  *  Inputs: | ||||||
|  *      0: Header 0x00180000 |  *      0: Header 0x00180000 | ||||||
|  *  Outputs: |  *  Outputs: | ||||||
|  |  *      0: Header Code[0x00180240] | ||||||
|  *      1: Result code |  *      1: Result code | ||||||
|  *      2: Left framebuffer virtual address for the main screen |  *      2: Left framebuffer virtual address for the main screen | ||||||
|  *      3: Right framebuffer virtual address for the main screen |  *      3: Right framebuffer virtual address for the main screen | ||||||
|  | @ -658,18 +659,19 @@ static void ImportDisplayCaptureInfo(Interface* self) { | ||||||
|     FrameBufferUpdate* top_screen = GetFrameBufferInfo(thread_id, 0); |     FrameBufferUpdate* top_screen = GetFrameBufferInfo(thread_id, 0); | ||||||
|     FrameBufferUpdate* bottom_screen = GetFrameBufferInfo(thread_id, 1); |     FrameBufferUpdate* bottom_screen = GetFrameBufferInfo(thread_id, 1); | ||||||
| 
 | 
 | ||||||
|  |     cmd_buff[0] = IPC::MakeHeader(0x18, 0x9, 0); | ||||||
|  |     cmd_buff[1] = RESULT_SUCCESS.raw; | ||||||
|  |     // Top Screen
 | ||||||
|     cmd_buff[2] = top_screen->framebuffer_info[top_screen->index].address_left; |     cmd_buff[2] = top_screen->framebuffer_info[top_screen->index].address_left; | ||||||
|     cmd_buff[3] = top_screen->framebuffer_info[top_screen->index].address_right; |     cmd_buff[3] = top_screen->framebuffer_info[top_screen->index].address_right; | ||||||
|     cmd_buff[4] = top_screen->framebuffer_info[top_screen->index].format; |     cmd_buff[4] = top_screen->framebuffer_info[top_screen->index].format; | ||||||
|     cmd_buff[5] = top_screen->framebuffer_info[top_screen->index].stride; |     cmd_buff[5] = top_screen->framebuffer_info[top_screen->index].stride; | ||||||
| 
 |     // Bottom Screen
 | ||||||
|     cmd_buff[6] = bottom_screen->framebuffer_info[bottom_screen->index].address_left; |     cmd_buff[6] = bottom_screen->framebuffer_info[bottom_screen->index].address_left; | ||||||
|     cmd_buff[7] = bottom_screen->framebuffer_info[bottom_screen->index].address_right; |     cmd_buff[7] = bottom_screen->framebuffer_info[bottom_screen->index].address_right; | ||||||
|     cmd_buff[8] = bottom_screen->framebuffer_info[bottom_screen->index].format; |     cmd_buff[8] = bottom_screen->framebuffer_info[bottom_screen->index].format; | ||||||
|     cmd_buff[9] = bottom_screen->framebuffer_info[bottom_screen->index].stride; |     cmd_buff[9] = bottom_screen->framebuffer_info[bottom_screen->index].stride; | ||||||
| 
 | 
 | ||||||
|     cmd_buff[1] = RESULT_SUCCESS.raw; |  | ||||||
| 
 |  | ||||||
|     LOG_WARNING(Service_GSP, "called"); |     LOG_WARNING(Service_GSP, "called"); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue