diff options
author | Younes Manton <[email protected]> | 2009-02-07 12:53:30 -0500 |
---|---|---|
committer | Younes Manton <[email protected]> | 2009-02-07 12:54:48 -0500 |
commit | 32cd1a0345eaf1f4da8a60a4ac2145ff51383d59 (patch) | |
tree | 52d61c21b8f6566bc3d3874ab8e97fcf597c3348 /src/gallium/drivers/nv50/nv50_context.h | |
parent | 2d6355495ce6f8668df3d9eb8825815bfead5401 (diff) |
nouveau: Need to surface_copy() without a pipe context.
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_context.h')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_context.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv50/nv50_context.h b/src/gallium/drivers/nv50/nv50_context.h index 6a11572590a..1e9d45cb340 100644 --- a/src/gallium/drivers/nv50/nv50_context.h +++ b/src/gallium/drivers/nv50/nv50_context.h @@ -167,6 +167,11 @@ extern void nv50_init_query_functions(struct nv50_context *nv50); extern void nv50_screen_init_miptree_functions(struct pipe_screen *pscreen); +extern int +nv50_surface_do_copy(struct nv50_screen *screen, struct pipe_surface *dst, + int dx, int dy, struct pipe_surface *src, int sx, int sy, + int w, int h); + /* nv50_draw.c */ extern struct draw_stage *nv50_draw_render_stage(struct nv50_context *nv50); |