blob: 6a28d40da7b81d0621437d4316a255a6d4636a7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __NOUVEAU_CONTEXT_H__
#define __NOUVEAU_CONTEXT_H__
unsigned int
nouveau_is_texture_referenced(struct pipe_context *, struct pipe_texture *,
unsigned face, unsigned level);
unsigned int
nouveau_is_buffer_referenced(struct pipe_context *, struct pipe_buffer *);
#endif
|