blob: 6e15230b486fa604cc35c4142483d4ab8b8b5e04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#ifndef __NV50_SCREEN_H__
#define __NV50_SCREEN_H__
#include "nouveau/nouveau_screen.h"
struct nv50_context;
struct nv50_screen {
struct nouveau_screen base;
struct nouveau_winsys *nvws;
struct nv50_context *cur_ctx;
struct nouveau_grobj *tesla;
struct nouveau_grobj *eng2d;
struct nouveau_grobj *m2mf;
struct nouveau_notifier *sync;
struct nouveau_bo *constbuf_misc[1];
struct nouveau_bo *constbuf_parm[PIPE_SHADER_TYPES];
struct nouveau_resource *immd_heap;
struct nouveau_bo *tic;
struct nouveau_bo *tsc;
struct nouveau_bo *stack_bo; /* control flow stack */
struct nouveau_bo *local_bo; /* l[] memory */
boolean force_push;
};
static INLINE struct nv50_screen *
nv50_screen(struct pipe_screen *screen)
{
return (struct nv50_screen *)screen;
}
extern void nv50_screen_relocs(struct nv50_screen *);
extern void nv50_screen_reloc_constbuf(struct nv50_screen *, unsigned cbi);
struct nv50_format {
uint32_t rt;
uint32_t tic;
uint32_t vtx;
uint32_t usage;
};
extern const struct nv50_format nv50_format_table[];
#endif
|