diff options
author | Marek Olšák <[email protected]> | 2010-08-29 06:08:24 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-08-29 06:16:53 +0200 |
commit | a922725118333e016a357008f37105c23c6f54bc (patch) | |
tree | 38a8b39abec34581df46e50f933610ffc8dca6c5 /src/gallium/drivers/r300/r300_context.c | |
parent | 89b2897220acfacdc431f138377fbcec9f0ea812 (diff) |
r300g,u_blitter: use u_framebuffer
Removing another function duplication in u_blitter.
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c index 05f7d09316d..624dadd07d7 100644 --- a/src/gallium/drivers/r300/r300_context.c +++ b/src/gallium/drivers/r300/r300_context.c @@ -65,7 +65,7 @@ static void r300_release_referenced_objects(struct r300_context *r300) unsigned i; /* Framebuffer state. */ - util_assign_framebuffer_state(fb, NULL); + util_unreference_framebuffer_state(fb); /* Textures. */ for (i = 0; i < textures->sampler_view_count; i++) |