mirror of
				https://github.com/libsdl-org/SDL.git
				synced 2025-11-04 01:34:38 +00:00 
			
		
		
		
	Fixed Android build warnings
This commit is contained in:
		@@ -859,7 +859,7 @@ int SDL_GetCPUCacheLineSize(void)
 | 
				
			|||||||
        cacheline_size = c & 0xff;
 | 
					        cacheline_size = c & 0xff;
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
#if defined(HAVE_SYSCONF) && defined(_SC_LEVEL1_DCACHE_LINESIZE)
 | 
					#if defined(HAVE_SYSCONF) && defined(_SC_LEVEL1_DCACHE_LINESIZE)
 | 
				
			||||||
        if ((cacheline_size = sysconf(_SC_LEVEL1_DCACHE_LINESIZE)) > 0) {
 | 
					        if ((cacheline_size = (int)sysconf(_SC_LEVEL1_DCACHE_LINESIZE)) > 0) {
 | 
				
			||||||
            return cacheline_size;
 | 
					            return cacheline_size;
 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
            cacheline_size = SDL_CACHELINE_SIZE;
 | 
					            cacheline_size = SDL_CACHELINE_SIZE;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1497,7 +1497,7 @@ SDL_Texture *SDL_CreateTexture(SDL_Renderer *renderer, SDL_PixelFormat format, S
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
static int SDL_UpdateTextureFromSurface(SDL_Texture *texture, SDL_Rect *rect, SDL_Surface *surface)
 | 
					static int SDL_UpdateTextureFromSurface(SDL_Texture *texture, SDL_Rect *rect, SDL_Surface *surface)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    int access;
 | 
					    SDL_TextureAccess access;
 | 
				
			||||||
    SDL_bool direct_update;
 | 
					    SDL_bool direct_update;
 | 
				
			||||||
    SDL_PixelFormat tex_format;
 | 
					    SDL_PixelFormat tex_format;
 | 
				
			||||||
    SDL_PropertiesID surface_props;
 | 
					    SDL_PropertiesID surface_props;
 | 
				
			||||||
@@ -1519,8 +1519,8 @@ static int SDL_UpdateTextureFromSurface(SDL_Texture *texture, SDL_Rect *rect, SD
 | 
				
			|||||||
        return -1;
 | 
					        return -1;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    tex_format = SDL_GetNumberProperty(tex_props, SDL_PROP_TEXTURE_FORMAT_NUMBER, 0);
 | 
					    tex_format = (SDL_PixelFormat)SDL_GetNumberProperty(tex_props, SDL_PROP_TEXTURE_FORMAT_NUMBER, 0);
 | 
				
			||||||
    access = SDL_GetNumberProperty(tex_props, SDL_PROP_TEXTURE_ACCESS_NUMBER, 0);
 | 
					    access = (SDL_TextureAccess)SDL_GetNumberProperty(tex_props, SDL_PROP_TEXTURE_ACCESS_NUMBER, 0);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (access != SDL_TEXTUREACCESS_STATIC && access != SDL_TEXTUREACCESS_STREAMING) {
 | 
					    if (access != SDL_TEXTUREACCESS_STATIC && access != SDL_TEXTUREACCESS_STREAMING) {
 | 
				
			||||||
        return -1;
 | 
					        return -1;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user