(iOS) Avoid some analyze warnings

This commit is contained in:
Twinaphex 2016-05-04 04:10:33 +02:00
parent f9bd28663a
commit 51565e6336
2 changed files with 17 additions and 16 deletions

View File

@ -427,7 +427,7 @@ static void gl_create_fbo_texture(gl_t *gl, unsigned i, GLuint texture)
{
unsigned mip_level;
video_shader_ctx_wrap_t wrap;
bool fp_fbo, srgb_fbo;
bool fp_fbo;
GLenum min_filter, mag_filter, wrap_enum;
video_shader_ctx_filter_t filter_type;
bool mipmapped = false;
@ -465,21 +465,12 @@ static void gl_create_fbo_texture(gl_t *gl, unsigned i, GLuint texture)
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, wrap_enum);
fp_fbo = gl->fbo_scale[i].fp_fbo;
srgb_fbo = gl->fbo_scale[i].srgb_fbo;
if (fp_fbo)
{
if (!gl->has_fp_fbo)
RARCH_ERR("[GL]: Floating-point FBO was requested, but is not supported. Falling back to UNORM. Result may band/clip/etc.!\n");
}
else if (srgb_fbo)
{
if (!gl->has_srgb_fbo)
RARCH_ERR("[GL]: sRGB FBO was requested, but it is not supported. Falling back to UNORM. Result may have banding!\n");
}
if (settings->video.force_srgb_disable)
srgb_fbo = false;
#ifndef HAVE_OPENGLES2
if (fp_fbo && gl->has_fp_fbo)
@ -493,6 +484,17 @@ static void gl_create_fbo_texture(gl_t *gl, unsigned i, GLuint texture)
#endif
{
#ifndef HAVE_OPENGLES
bool srgb_fbo = gl->fbo_scale[i].srgb_fbo;
if (!fp_fbo && srgb_fbo)
{
if (!gl->has_srgb_fbo)
RARCH_ERR("[GL]: sRGB FBO was requested, but it is not supported. Falling back to UNORM. Result may have banding!\n");
}
if (settings->video.force_srgb_disable)
srgb_fbo = false;
if (srgb_fbo && gl->has_srgb_fbo)
{
RARCH_LOG("[GL]: FBO pass #%d is sRGB.\n", i);

View File

@ -406,13 +406,13 @@ replacementString:(NSString *)string
{
char buffer[PATH_MAX_LENGTH];
char label[PATH_MAX_LENGTH];
NSString *desc = BOXSTRING("N/A");
UIAlertView *alertView;
UITextField *field;
UIAlertView *alertView = NULL;
UITextField *field = NULL;
NSString *desc = NULL;
menu_entry_get_path(self.i, label, sizeof(label));
desc = BOXSTRING(label);
desc = BOXSTRING(label);
alertView =
[[UIAlertView alloc] initWithTitle:BOXSTRING("Enter new value")
@ -422,8 +422,7 @@ replacementString:(NSString *)string
otherButtonTitles:BOXSTRING("OK"), nil];
alertView.alertViewStyle = UIAlertViewStylePlainTextInput;
field = [alertView textFieldAtIndex:0];
field = [alertView textFieldAtIndex:0];
field.delegate = self.formatter;
menu_entry_get_value(self.i, buffer, sizeof(buffer));