Silence some warnings found in Xcode

This commit is contained in:
reallibretroadmin 2023-01-05 09:27:45 +01:00
parent 7f0dfe797d
commit d36bd9e677
4 changed files with 9 additions and 9 deletions

View File

@ -1377,7 +1377,7 @@ static unsigned gl3_num_miplevels(unsigned width, unsigned height)
static void video_texture_load_gl3(
const struct texture_image *ti,
enum texture_filter_type filter_type,
uintptr_t *idptr)
GLuint *idptr)
{
/* Generate the OpenGL texture object */
GLuint id;
@ -1439,7 +1439,7 @@ static bool gl3_overlay_load(void *data,
const void *image_data, unsigned num_images)
{
unsigned i, j;
uintptr_t id;
GLuint id;
gl3_t *gl = (gl3_t*)data;
const struct texture_image *images =
(const struct texture_image*)image_data;
@ -2094,7 +2094,7 @@ static struct video_shader *gl3_get_current_shader(void *data)
#ifdef HAVE_THREADS
static int video_texture_load_wrap_gl3_mipmap(void *data)
{
uintptr_t id = 0;
GLuint id = 0;
if (!data)
return 0;
@ -2105,7 +2105,7 @@ static int video_texture_load_wrap_gl3_mipmap(void *data)
static int video_texture_load_wrap_gl3(void *data)
{
uintptr_t id = 0;
GLuint id = 0;
if (!data)
return 0;
@ -2118,7 +2118,7 @@ static int video_texture_load_wrap_gl3(void *data)
static uintptr_t gl3_load_texture(void *video_data, void *data,
bool threaded, enum texture_filter_type filter_type)
{
uintptr_t id = 0;
GLuint id = 0;
#ifdef HAVE_THREADS
if (threaded)

View File

@ -674,7 +674,7 @@ public:
UBORing::~UBORing()
{
glDeleteBuffers(buffers.size(), buffers.data());
glDeleteBuffers((GLsizei)buffers.size(), buffers.data());
}
class Pass

View File

@ -119,7 +119,7 @@ uint32_t cdfs_get_num_sectors(cdfs_file_t* file)
if (frame_size == 0)
frame_size = 1; /* prevent divide by 0 error if sector size is unknown */
}
return intfstream_get_size(file->track->stream) / frame_size;
return (uint32_t)(intfstream_get_size(file->track->stream) / frame_size);
}
uint32_t cdfs_get_first_sector(cdfs_file_t* file)
@ -287,7 +287,7 @@ int64_t cdfs_read_file(cdfs_file_t* file, void* buffer, uint64_t len)
cdfs_seek_track_sector(file->track, file->current_sector);
intfstream_read(file->track->stream, file->sector_buffer, 2048);
memcpy(buffer, file->sector_buffer, (size_t)len);
file->current_sector_offset = len;
file->current_sector_offset = (unsigned int)len;
file->sector_buffer_valid = 1;
bytes_read += len;

View File

@ -851,7 +851,7 @@ static void open_document_handler(
if (browser)
{
ui_browser_window_state_t
browser_state = {{0}};
browser_state = {NULL};
bool result = false;
settings_t *settings = config_get_ptr();
const char *path_dir_menu_content = settings->paths.directory_menu_content;