diff options
| author | Keith Whitwell <keithw@vmware.com> | 2009-11-04 19:03:06 +0000 |
|---|---|---|
| committer | Keith Whitwell <keithw@vmware.com> | 2009-11-04 19:03:06 +0000 |
| commit | 0cf432c7a180a6b847fa49c97ea1c48d90a7d5f8 (patch) | |
| tree | 96607ecd174474c77830094122067d5d8cc9672e /src/gallium/drivers | |
| parent | 58e3360c11d6041de2927b604416146acb0c3817 (diff) | |
i965g: initialize surface refcount
Diffstat (limited to 'src/gallium/drivers')
| -rw-r--r-- | src/gallium/drivers/i965/brw_screen_surface.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/i965/brw_screen_surface.c b/src/gallium/drivers/i965/brw_screen_surface.c index b4ad91278b..04a6fc7b66 100644 --- a/src/gallium/drivers/i965/brw_screen_surface.c +++ b/src/gallium/drivers/i965/brw_screen_surface.c @@ -130,6 +130,8 @@ static struct brw_surface *create_in_place_view( struct brw_screen *brw_screen, if (surface == NULL) return NULL; + pipe_reference_init(&surface->base.reference, 1); + /* XXX: ignoring render-to-slice-of-3d-texture */ assert(id.bits.zslice == 0); |
