mirror of
https://github.com/libretro/RetroArch
synced 2025-03-28 19:20:35 +00:00
Cleanups
This commit is contained in:
parent
d1ebb58580
commit
d5f7839d12
@ -73,11 +73,12 @@ static std::string build_stage_source(
|
||||
strlcpy(expected, "#pragma stage ", sizeof(expected));
|
||||
strlcat(expected, stage, sizeof(expected));
|
||||
|
||||
active = strcmp(expected, line) == 0;
|
||||
active = string_is_equal(expected, line);
|
||||
}
|
||||
}
|
||||
else if (!strncmp("#pragma name ", line, STRLEN_CONST("#pragma name ")) ||
|
||||
!strncmp("#pragma format ", line, STRLEN_CONST("#pragma format ")))
|
||||
else if (
|
||||
!strncmp("#pragma name ", line, STRLEN_CONST("#pragma name ")) ||
|
||||
!strncmp("#pragma format ", line, STRLEN_CONST("#pragma format ")))
|
||||
{
|
||||
/* Ignore */
|
||||
}
|
||||
@ -104,7 +105,8 @@ bool glslang_parse_meta(const struct string_list *lines, glslang_meta *meta)
|
||||
const char *line = lines->elems[i].data;
|
||||
|
||||
/* Check for shader identifier */
|
||||
if (!strncmp("#pragma name ", line, STRLEN_CONST("#pragma name ")))
|
||||
if (!strncmp("#pragma name ", line,
|
||||
STRLEN_CONST("#pragma name ")))
|
||||
{
|
||||
const char *str = NULL;
|
||||
|
||||
@ -121,7 +123,8 @@ bool glslang_parse_meta(const struct string_list *lines, glslang_meta *meta)
|
||||
meta->name = str;
|
||||
}
|
||||
/* Check for shader parameters */
|
||||
else if (!strncmp("#pragma parameter ", line, STRLEN_CONST("#pragma parameter ")))
|
||||
else if (!strncmp("#pragma parameter ", line,
|
||||
STRLEN_CONST("#pragma parameter ")))
|
||||
{
|
||||
float initial, minimum, maximum, step;
|
||||
int ret = sscanf(
|
||||
@ -175,12 +178,14 @@ bool glslang_parse_meta(const struct string_list *lines, glslang_meta *meta)
|
||||
}
|
||||
else
|
||||
{
|
||||
RARCH_ERR("[slang]: Invalid #pragma parameter line: \"%s\".\n", line);
|
||||
RARCH_ERR("[slang]: Invalid #pragma parameter line: \"%s\".\n",
|
||||
line);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
/* Check for framebuffer format */
|
||||
else if (!strncmp("#pragma format ", line, STRLEN_CONST("#pragma format ")))
|
||||
else if (!strncmp("#pragma format ", line,
|
||||
STRLEN_CONST("#pragma format ")))
|
||||
{
|
||||
const char *str = NULL;
|
||||
|
||||
@ -246,9 +251,7 @@ bool glslang_compile_shader(const char *shader_path, glslang_output *output)
|
||||
return true;
|
||||
|
||||
error:
|
||||
|
||||
if (lines)
|
||||
string_list_free(lines);
|
||||
string_list_free(lines);
|
||||
#endif
|
||||
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user