(API Change) Unsquish libobs/util

Changed:                      To:
-----------------------------------------------------------
dstr_isempty                  dstr_is_empty
cf_lexer_gettokens            cf_lexer_get_tokens
cf_preprocessor_gettokens     cf_preprocessor_get_tokens
This commit is contained in:
jp9000
2014-08-05 13:38:24 -07:00
parent 04712b5fe9
commit 9d300685ca
12 changed files with 22 additions and 21 deletions

View File

@@ -1165,7 +1165,7 @@ static void ep_write_main_params(struct effect_parser *ep,
struct ep_func *func)
{
size_t i;
bool empty_params = dstr_isempty(param_str);
bool empty_params = dstr_is_empty(param_str);
for (i = 0; i < func->param_vars.num; i++) {
struct ep_var *var = func->param_vars.array+i;
@@ -1188,7 +1188,7 @@ static void ep_write_main_params(struct effect_parser *ep,
dstr_cat(shader, var->mapping);
}
if (!dstr_isempty(param_str))
if (!dstr_is_empty(param_str))
dstr_cat(param_str, ", ");
dstr_cat(param_str, var->name);
}