st/nine: pass NULL to ureg_get_tokens()

The number of tokens in never used and the pointer is NULL checked
so just pass NULL.

Reviewed-by: Axel Davy <axel.davy@ens.fr>
This commit is contained in:
Timothy Arceri 2017-03-03 10:12:09 +11:00
parent a45cd8107d
commit 0e34966340
2 changed files with 2 additions and 4 deletions

View File

@ -171,8 +171,7 @@ static void nine_ff_prune_ps(struct NineDevice9 *);
static void nine_ureg_tgsi_dump(struct ureg_program *ureg, boolean override)
{
if (debug_get_bool_option("NINE_FF_DUMP", FALSE) || override) {
unsigned count;
const struct tgsi_token *toks = ureg_get_tokens(ureg, &count);
const struct tgsi_token *toks = ureg_get_tokens(ureg, NULL);
tgsi_dump(toks, 0);
ureg_free_tokens(toks);
}

View File

@ -3705,8 +3705,7 @@ nine_translate_shader(struct NineDevice9 *device, struct nine_shader_info *info,
ureg_DECL_constant2D(tx->ureg, 0, 2, 4); /* Viewport data */
if (debug_get_bool_option("NINE_TGSI_DUMP", FALSE)) {
unsigned count;
const struct tgsi_token *toks = ureg_get_tokens(tx->ureg, &count);
const struct tgsi_token *toks = ureg_get_tokens(tx->ureg, NULL);
tgsi_dump(toks, 0);
ureg_free_tokens(toks);
}