diff options
Diffstat (limited to 'src/gallium/drivers/cell/ppu/cell_texture.h')
-rw-r--r-- | src/gallium/drivers/cell/ppu/cell_texture.h | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/src/gallium/drivers/cell/ppu/cell_texture.h b/src/gallium/drivers/cell/ppu/cell_texture.h index 0264fed88e..fcee069d05 100644 --- a/src/gallium/drivers/cell/ppu/cell_texture.h +++ b/src/gallium/drivers/cell/ppu/cell_texture.h @@ -29,7 +29,7 @@ #define CELL_TEXTURE_H -struct pipe_context; +struct cell_context; struct pipe_texture; @@ -60,21 +60,16 @@ cell_texture(struct pipe_texture *pt) -extern struct pipe_texture * -cell_texture_create(struct pipe_context *pipe, - const struct pipe_texture *templat); - extern void -cell_texture_release(struct pipe_context *pipe, struct pipe_texture **pt); +cell_update_texture_mapping(struct cell_context *cell); -extern struct pipe_surface * -cell_get_tex_surface(struct pipe_context *pipe, - struct pipe_texture *pt, - unsigned face, unsigned level, unsigned zslice); + +extern void +cell_init_texture_functions(struct cell_context *cell); extern void -cell_update_texture_mapping(struct cell_context *cell); +cell_init_screen_texture_funcs(struct pipe_screen *screen); -#endif /* CELL_TEXTURE */ +#endif /* CELL_TEXTURE_H */ |