gallium: move softpipe_get_tex_surface() prototype

This commit is contained in:
Brian 2008-01-21 20:23:48 -07:00
parent c14773b06b
commit 4211d2d461
2 changed files with 5 additions and 9 deletions

View file

@ -36,13 +36,6 @@
struct pipe_context;
struct softpipe_context;
struct softpipe_tile_cache;
extern struct pipe_surface *
softpipe_get_tex_surface(struct pipe_context *pipe,
struct pipe_texture *pt,
unsigned face, unsigned level, unsigned zslice);
extern void

View file

@ -61,7 +61,10 @@ softpipe_texture_create(struct pipe_context *pipe, struct pipe_texture **pt);
extern void
softpipe_texture_release(struct pipe_context *pipe, struct pipe_texture **pt);
extern struct pipe_surface *
softpipe_get_tex_surface(struct pipe_context *pipe,
struct pipe_texture *pt,
unsigned face, unsigned level, unsigned zslice);
#endif /* SP_TEXTURE */