diff options
author | José Fonseca <[email protected]> | 2010-05-11 21:27:05 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-05-11 21:27:22 +0100 |
commit | edbc302ad678e1a4a8803ba0e827a13dd27105d2 (patch) | |
tree | dee45022dda3a3f60d62f37328003ef835f7ac47 /src/gallium/auxiliary/tgsi/tgsi_ureg.c | |
parent | 48f8a76549aa2001090c7a5e1fa40891954ff01f (diff) |
mesa/st+tgsi: Provide a free callback to match with ureg_get_tokens().
This fixes crashes with the memory debugging routines on Windows.
NOTE: This is a candidate for the 7.8 stable branch
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_ureg.c')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_ureg.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_ureg.c b/src/gallium/auxiliary/tgsi/tgsi_ureg.c index 49b854b1234..5fda808dbef 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_ureg.c +++ b/src/gallium/auxiliary/tgsi/tgsi_ureg.c @@ -1467,6 +1467,12 @@ const struct tgsi_token *ureg_get_tokens( struct ureg_program *ureg, } +void ureg_free_tokens( const struct tgsi_token *tokens ) +{ + FREE((struct tgsi_token *)tokens); +} + + struct ureg_program *ureg_create( unsigned processor ) { struct ureg_program *ureg = CALLOC_STRUCT( ureg_program ); |