mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	PICA: Align vertex attributes
This commit is contained in:
		
							parent
							
								
									7f8c99899b
								
							
						
					
					
						commit
						a66c186e81
					
				
					 3 changed files with 28 additions and 1 deletions
				
			
		|  | @ -22,6 +22,7 @@ set(SRCS | |||
|             ) | ||||
| 
 | ||||
| set(HEADERS | ||||
|             alignment.h | ||||
|             assert.h | ||||
|             bit_field.h | ||||
|             bit_set.h | ||||
|  |  | |||
							
								
								
									
										22
									
								
								src/common/alignment.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								src/common/alignment.h
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,22 @@ | |||
| // This file is under the public domain.
 | ||||
| 
 | ||||
| #pragma once | ||||
| 
 | ||||
| #include <cstddef> | ||||
| #include <type_traits> | ||||
| 
 | ||||
| namespace Common { | ||||
| 
 | ||||
| template <typename T> | ||||
| constexpr T AlignUp(T value, size_t size) { | ||||
|     static_assert(std::is_unsigned<T>::value, "T must be an unsigned value."); | ||||
|     return static_cast<T>(value + (size - value % size) % size); | ||||
| } | ||||
| 
 | ||||
| template <typename T> | ||||
| constexpr T AlignDown(T value, size_t size) { | ||||
|     static_assert(std::is_unsigned<T>::value, "T must be an unsigned value."); | ||||
|     return static_cast<T>(value - value % size); | ||||
| } | ||||
| 
 | ||||
| } // namespace Common
 | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue