tgsi: Perform a sanity check after reading a shader from text.

This commit is contained in:
Michal Krol 2008-07-17 20:23:26 +02:00
parent 3c5ec98e45
commit 10d1dc68a4

View file

@ -29,6 +29,7 @@
#include "tgsi_text.h"
#include "tgsi_build.h"
#include "tgsi_parse.h"
#include "tgsi_sanity.h"
#include "tgsi_util.h"
static boolean is_alpha_underscore( const char *cur )
@ -1064,5 +1065,8 @@ tgsi_text_translate(
ctx.tokens_cur = tokens;
ctx.tokens_end = tokens + num_tokens;
return translate( &ctx );
if (!translate( &ctx ))
return FALSE;
return tgsi_sanity_check( tokens );
}