mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Merge pull request #611 from yuriks/pixelated-textures
Video core: Fix pixelation/blockiness in textures.
This commit is contained in:
		
						commit
						3342679b33
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		|  | @ -333,7 +333,7 @@ const Math::Vec4<u8> LookupTexture(const u8* source, int x, int y, const Texture | ||||||
|     // Interleave the lower 3 bits of each coordinate to get the intra-block offsets, which are
 |     // Interleave the lower 3 bits of each coordinate to get the intra-block offsets, which are
 | ||||||
|     // arranged in a Z-order curve. More details on the bit manipulation at:
 |     // arranged in a Z-order curve. More details on the bit manipulation at:
 | ||||||
|     // https://fgiesen.wordpress.com/2009/12/13/decoding-morton-codes/
 |     // https://fgiesen.wordpress.com/2009/12/13/decoding-morton-codes/
 | ||||||
|     unsigned int i = (x | (y << 8)) & 0x0707; // ---- -210
 |     unsigned int i = (x & 7) | ((y & 7) << 8); // ---- -210
 | ||||||
|     i = (i ^ (i << 2)) & 0x1313;               // ---2 --10
 |     i = (i ^ (i << 2)) & 0x1313;               // ---2 --10
 | ||||||
|     i = (i ^ (i << 1)) & 0x1515;               // ---2 -1-0
 |     i = (i ^ (i << 1)) & 0x1515;               // ---2 -1-0
 | ||||||
|     i = (i | (i >> 7)) & 0x3F; |     i = (i | (i >> 7)) & 0x3F; | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue