diff options
author | Joakim Sindholt <[email protected]> | 2009-05-12 21:41:48 +0200 |
---|---|---|
committer | Joakim Sindholt <[email protected]> | 2009-05-12 21:41:48 +0200 |
commit | 62c0c7d81a3f271b7dc7177467f9c884e89f9eee (patch) | |
tree | 604182b2afebb5842a00a2dd62c33e50e37bf500 /src/gallium/drivers/r300/r300_state.c | |
parent | 723bc9452fee2602fa702699141e91b87872e621 (diff) |
r300-gallium: duplicate tokens in create_fs_state
This was all phoenix64's idea. Credit goes to him
Diffstat (limited to 'src/gallium/drivers/r300/r300_state.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_state.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_state.c b/src/gallium/drivers/r300/r300_state.c index 0143e228c4e..80e11d6ecf3 100644 --- a/src/gallium/drivers/r300/r300_state.c +++ b/src/gallium/drivers/r300/r300_state.c @@ -289,6 +289,7 @@ static void* r300_create_fs_state(struct pipe_context* pipe, /* Copy state directly into shader. */ fs->state = *shader; + fs->state.tokens = tgsi_dup_tokens(shader->tokens); tgsi_scan_shader(shader->tokens, &fs->info); @@ -317,6 +318,8 @@ static void r300_bind_fs_state(struct pipe_context* pipe, void* shader) /* Delete fragment shader state. */ static void r300_delete_fs_state(struct pipe_context* pipe, void* shader) { + struct r3xx_fragment_shader* fs = (struct r3xx_fragment_shader*)shader + FREE(fs->state.tokens); FREE(shader); } |