diff options
author | José Fonseca <[email protected]> | 2008-08-08 12:23:21 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-08-08 12:32:23 +0100 |
commit | 9dcb956a0618931c97693f7c74493cf296cfe86c (patch) | |
tree | ffc076c3e34dffd3dc8de5cf01ccb96939d4b797 /src/gallium/drivers/i915simple/i915_screen.c | |
parent | be36f7869e8ecc4b00e414557a9699ba373e6bdd (diff) |
gallium: Add destroy callback to all *_winsys interfaces.
For consistency and to simplify these objects' destruction.
Diffstat (limited to 'src/gallium/drivers/i915simple/i915_screen.c')
-rw-r--r-- | src/gallium/drivers/i915simple/i915_screen.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/i915simple/i915_screen.c b/src/gallium/drivers/i915simple/i915_screen.c index 4b1b8af7da8..0afa17bed85 100644 --- a/src/gallium/drivers/i915simple/i915_screen.c +++ b/src/gallium/drivers/i915simple/i915_screen.c @@ -193,6 +193,11 @@ i915_is_format_supported( struct pipe_screen *screen, static void i915_destroy_screen( struct pipe_screen *screen ) { + struct pipe_winsys *winsys = screen->winsys; + + if(winsys->destroy) + winsys->destroy(winsys); + FREE(screen); } |