Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5564 serge 1
 
2
#define __NV50_STATEOBJ_TEX_H__
3
4
 
5
6
 
7
   int id;
8
   uint32_t tsc[8];
9
};
10
11
 
12
nv50_tsc_entry(void *hwcso)
13
{
14
   return (struct nv50_tsc_entry *)hwcso;
15
}
16
17
 
18
   struct pipe_sampler_view pipe;
19
   int id;
20
   uint32_t tic[8];
21
};
22
23
 
24
nv50_tic_entry(struct pipe_sampler_view *view)
25
{
26
   return (struct nv50_tic_entry *)view;
27
}
28
29
 
30
nv50_sampler_state_create(struct pipe_context *,
31
                          const struct pipe_sampler_state *);
32
33
 
34