mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-30 21:21:10 +00:00 
			
		
		
		
	 1556d0d377
			
		
	
	
		1556d0d377
		
	
	
	
	
		
			
			- convert ARM assembly (NEON) files, - add rtcd for run-time CPU features detection, - modify "system_state.h", - "arm_cpudetect.c" fixes.
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			225 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			225 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "vpx_config.h"
 | |
| 
 | |
| #if defined(WEBM_X86ASM) && (ARCH_X86 || ARCH_X86_64)
 | |
| 	#include "rtcd/vp9_rtcd_x86.h"
 | |
| #elif defined(WEBM_ARMASM) && ARCH_ARM
 | |
| 	#include "rtcd/vp9_rtcd_arm.h"
 | |
| #else
 | |
| 	#include "rtcd/vp9_rtcd_c.h"
 | |
| #endif
 |