diff options
author | José Fonseca <[email protected]> | 2007-12-11 01:14:38 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2007-12-11 01:14:38 +0000 |
commit | 12363674e5aa39b780020339038186b7715bd4b2 (patch) | |
tree | a7bb56b6ccf37e29000f6ef72fb602908c4c08e1 /src/mesa/pipe/i915simple | |
parent | 609538f57c93c6b6166777a329d80c46fef86f0b (diff) |
Add surface storage allocation function to winsys interface.
Diffstat (limited to 'src/mesa/pipe/i915simple')
-rw-r--r-- | src/mesa/pipe/i915simple/i915_surface.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/pipe/i915simple/i915_surface.c b/src/mesa/pipe/i915simple/i915_surface.c index bd6fd32704f..f93a75b0f0c 100644 --- a/src/mesa/pipe/i915simple/i915_surface.c +++ b/src/mesa/pipe/i915simple/i915_surface.c @@ -238,11 +238,12 @@ i915_get_tex_surface(struct pipe_context *pipe, assert(zslice == 0); } - ps = pipe->winsys->surface_alloc(pipe->winsys, pt->format); + ps = pipe->winsys->surface_alloc(pipe->winsys); if (ps) { assert(ps->format); assert(ps->refcount); pipe->winsys->buffer_reference(pipe->winsys, &ps->buffer, tex->buffer); + ps->format = pt->format; ps->cpp = pt->cpp; ps->width = pt->width[level]; ps->height = pt->height[level]; |