mirror of
				https://git.code.sf.net/p/libpng/code.git
				synced 2025-07-10 18:04:09 +02:00 
			
		
		
		
	Fix the build with MSVC ARM64
This commit is contained in:
		
							parent
							
								
									b66ed71131
								
							
						
					
					
						commit
						1ceaa83a84
					
				| @ -20,9 +20,9 @@ | |||||||
| #if PNG_ARM_NEON_IMPLEMENTATION == 1 /* intrinsics code from pngpriv.h */ | #if PNG_ARM_NEON_IMPLEMENTATION == 1 /* intrinsics code from pngpriv.h */ | ||||||
| 
 | 
 | ||||||
| #if defined(_MSC_VER) && defined(_M_ARM64) | #if defined(_MSC_VER) && defined(_M_ARM64) | ||||||
| #include <arm64_neon.h> | #  include <arm64_neon.h> | ||||||
| #else | #else | ||||||
| #include <arm_neon.h> | #  include <arm_neon.h> | ||||||
| #endif | #endif | ||||||
| 
 | 
 | ||||||
| /* libpng row pointers are not necessarily aligned to any particular boundary,
 | /* libpng row pointers are not necessarily aligned to any particular boundary,
 | ||||||
|  | |||||||
| @ -1,5 +1,7 @@ | |||||||
|  | 
 | ||||||
| /* palette_neon_intrinsics.c - NEON optimised palette expansion functions
 | /* palette_neon_intrinsics.c - NEON optimised palette expansion functions
 | ||||||
|  * |  * | ||||||
|  |  * Copyright (c) 2018 Cosmin Truta | ||||||
|  * Copyright (c) 2017-2018 Arm Holdings. All rights reserved. |  * Copyright (c) 2017-2018 Arm Holdings. All rights reserved. | ||||||
|  * Written by Richard Townsend <Richard.Townsend@arm.com>, February 2017. |  * Written by Richard Townsend <Richard.Townsend@arm.com>, February 2017. | ||||||
|  * |  * | ||||||
| @ -12,7 +14,11 @@ | |||||||
| 
 | 
 | ||||||
| #if PNG_ARM_NEON_IMPLEMENTATION == 1 | #if PNG_ARM_NEON_IMPLEMENTATION == 1 | ||||||
| 
 | 
 | ||||||
| #include <arm_neon.h> | #if defined(_MSC_VER) && defined(_M_ARM64) | ||||||
|  | #  include <arm64_neon.h> | ||||||
|  | #else | ||||||
|  | #  include <arm_neon.h> | ||||||
|  | #endif | ||||||
| 
 | 
 | ||||||
| /* Build an RGBA palette from the RGB and separate alpha palettes. */ | /* Build an RGBA palette from the RGB and separate alpha palettes. */ | ||||||
| void | void | ||||||
|  | |||||||
							
								
								
									
										12
									
								
								pngrtran.c
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								pngrtran.c
									
									
									
									
									
								
							| @ -19,10 +19,14 @@ | |||||||
| #include "pngpriv.h" | #include "pngpriv.h" | ||||||
| 
 | 
 | ||||||
| #ifdef PNG_ARM_NEON_IMPLEMENTATION | #ifdef PNG_ARM_NEON_IMPLEMENTATION | ||||||
| #if PNG_ARM_NEON_IMPLEMENTATION == 1 | #  if PNG_ARM_NEON_IMPLEMENTATION == 1 | ||||||
| #define PNG_ARM_NEON_INTRINSICS_AVAILABLE | #    define PNG_ARM_NEON_INTRINSICS_AVAILABLE | ||||||
| #include <arm_neon.h> | #    if defined(_MSC_VER) && defined(_M_ARM64) | ||||||
| #endif | #      include <arm64_neon.h> | ||||||
|  | #    else | ||||||
|  | #      include <arm_neon.h> | ||||||
|  | #    endif | ||||||
|  | #  endif | ||||||
| #endif | #endif | ||||||
| 
 | 
 | ||||||
| #ifdef PNG_READ_SUPPORTED | #ifdef PNG_READ_SUPPORTED | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Cosmin Truta
						Cosmin Truta