diff options
author | Michel Dänzer <[email protected]> | 2009-02-18 13:14:02 +0100 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2009-02-18 13:14:02 +0100 |
commit | b89aa1d87ad6cebdbb3f2067863c600f50bf0ff1 (patch) | |
tree | d131e28eaad0eb633eff0e1cd861595f8bc5f3c3 /src/gallium/drivers/i915simple/i915_texture.c | |
parent | 3da38db5949f4c73ec01282ebf9138a0510abbee (diff) |
i915simple: Minimal fixup for introduction of struct pipe_transfer.
Diffstat (limited to 'src/gallium/drivers/i915simple/i915_texture.c')
-rw-r--r-- | src/gallium/drivers/i915simple/i915_texture.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gallium/drivers/i915simple/i915_texture.c b/src/gallium/drivers/i915simple/i915_texture.c index b2ca3a2286b..957726523fa 100644 --- a/src/gallium/drivers/i915simple/i915_texture.c +++ b/src/gallium/drivers/i915simple/i915_texture.c @@ -686,10 +686,6 @@ i915_get_tex_surface(struct pipe_screen *screen, ps->format = pt->format; ps->width = pt->width[level]; ps->height = pt->height[level]; - ps->block = pt->block; - ps->nblocksx = pt->nblocksx[level]; - ps->nblocksy = pt->nblocksy[level]; - ps->stride = tex->stride; ps->offset = offset; ps->usage = flags; ps->status = PIPE_SURFACE_STATUS_DEFINED; |