diff options
author | Keith Whitwell <[email protected]> | 2008-01-22 14:38:36 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-01-26 10:32:13 +0900 |
commit | f3aa4de034b0d791ce2e38e8aeb3b3abdb4e3b50 (patch) | |
tree | 3888f963ea9113f73dd48da697168d592ff87ebe /src/mesa/pipe/i965simple | |
parent | 1e9e4341e08a45c93e7caa90c2cca844469f4629 (diff) |
gallium: minor cleanups to pipe interface
- Remove put/get tile, just have users call put_tile_raw, etc directly.
- Remove surface_data call, just map it locally.
Diffstat (limited to 'src/mesa/pipe/i965simple')
-rw-r--r-- | src/mesa/pipe/i965simple/brw_surface.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/pipe/i965simple/brw_surface.c b/src/mesa/pipe/i965simple/brw_surface.c index 252aec7d29c..eb7835836ee 100644 --- a/src/mesa/pipe/i965simple/brw_surface.c +++ b/src/mesa/pipe/i965simple/brw_surface.c @@ -203,10 +203,6 @@ void brw_init_surface_functions(struct brw_context *brw) { brw->pipe.get_tex_surface = brw_get_tex_surface; - brw->pipe.get_tile = pipe_get_tile_raw; - brw->pipe.put_tile = pipe_put_tile_raw; - - brw->pipe.surface_data = brw_surface_data; brw->pipe.surface_copy = brw_surface_copy; brw->pipe.surface_fill = brw_surface_fill; } |