blob: 825d3da6da539b979d2577f5b823e75ba95d938e (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef __NOUVEAU_SWAPBUFFERS_H__
#define __NOUVEAU_SWAPBUFFERS_H__
extern void nouveau_copy_buffer(__DRIdrawablePrivate *, struct pipe_surface *,
const drm_clip_rect_t *);
extern void nouveau_copy_sub_buffer(__DRIdrawablePrivate *,
int x, int y, int w, int h);
extern void nouveau_swap_buffers(__DRIdrawablePrivate *);
#endif
|