summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/failover/fo_context.c
diff options
context:
space:
mode:
authorMichel Dänzer <michel@tungstengraphics.com>2007-11-28 19:04:54 +0100
committerBen Skeggs <skeggsb@gmail.com>2007-12-09 12:04:36 +1100
commit72513ae3a7b4f2a0b90c46e4ef0b9c10e4c74ed2 (patch)
treeb5aee2674b033634b5bb92a1265cabe2a9915e25 /src/mesa/pipe/failover/fo_context.c
parent47b418b8fa5fd242e9021503d6ec329ac3d56fb0 (diff)
Move dimensions from struct pipe_region to struct pipe_surface.
Diffstat (limited to 'src/mesa/pipe/failover/fo_context.c')
-rw-r--r--src/mesa/pipe/failover/fo_context.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/pipe/failover/fo_context.c b/src/mesa/pipe/failover/fo_context.c
index c5fab73fb1..0cc9cab408 100644
--- a/src/mesa/pipe/failover/fo_context.c
+++ b/src/mesa/pipe/failover/fo_context.c
@@ -142,9 +142,9 @@ struct pipe_context *failover_create( struct pipe_context *hw,
failover->pipe.region_map = hw->region_map;
failover->pipe.region_unmap = hw->region_unmap;
- failover->pipe.region_data = hw->region_data;
- failover->pipe.region_copy = hw->region_copy;
- failover->pipe.region_fill = hw->region_fill;
+ failover->pipe.surface_data = hw->surface_data;
+ failover->pipe.surface_copy = hw->surface_copy;
+ failover->pipe.surface_fill = hw->surface_fill;
failover->pipe.mipmap_tree_layout = hw->mipmap_tree_layout;
failover->pipe.flush = hw->flush;