tgsi: remove unnecessary full_token init and free functions
authorKeith Whitwell <keithw@vmware.com>
Tue, 24 Nov 2009 14:45:56 +0000 (14:45 +0000)
committerKeith Whitwell <keithw@vmware.com>
Tue, 24 Nov 2009 14:45:56 +0000 (14:45 +0000)
src/gallium/auxiliary/tgsi/tgsi_parse.c
src/gallium/auxiliary/tgsi/tgsi_parse.h

index 853485b48be10c2b907191107ccf12158383681a..52c714ebbdfc38fbe28cebc10e1a60ce7fe0cf8c 100644 (file)
 #include "tgsi_parse.h"
 #include "util/u_memory.h"
 
-void
-tgsi_full_token_init(
-   union tgsi_full_token *full_token )
-{
-   full_token->Token.Type = TGSI_TOKEN_TYPE_DECLARATION;
-}
-
-void
-tgsi_full_token_free(
-   union tgsi_full_token *full_token )
-{
-}
-
 unsigned
 tgsi_parse_init(
    struct tgsi_parse_context *ctx,
@@ -64,8 +51,6 @@ tgsi_parse_init(
    ctx->Tokens = tokens;
    ctx->Position = 1 + ctx->FullHeader.Header.HeaderSize;
 
-   tgsi_full_token_init( &ctx->FullToken );
-
    return TGSI_PARSE_OK;
 }
 
@@ -73,7 +58,6 @@ void
 tgsi_parse_free(
    struct tgsi_parse_context *ctx )
 {
-   tgsi_full_token_free( &ctx->FullToken );
 }
 
 boolean
@@ -118,9 +102,6 @@ tgsi_parse_token(
    struct tgsi_token token;
    unsigned i;
 
-   tgsi_full_token_free( &ctx->FullToken );
-   tgsi_full_token_init( &ctx->FullToken );
-
    next_token( ctx, &token );
 
    switch( token.Type ) {
index c78d6e64fffe090e1419b94ea02e0288ba4ce140..48e6987ab7d2f7a2c2533d94ace9ae8c619b4edb 100644 (file)
@@ -93,14 +93,6 @@ union tgsi_full_token
    struct tgsi_full_instruction  FullInstruction;
 };
 
-void
-tgsi_full_token_init(
-   union tgsi_full_token *full_token );
-
-void
-tgsi_full_token_free(
-   union tgsi_full_token *full_token );
-
 struct tgsi_parse_context
 {
    const struct tgsi_token    *Tokens;