~ubuntu-branches/ubuntu/precise/mesa/precise-updates

« back to all changes in this revision

Viewing changes to src/gallium/drivers/nv50/nv50_screen.h

  • Committer: Package Import Robot
  • Author(s): Robert Hooker
  • Date: 2012-02-02 12:05:48 UTC
  • mfrom: (1.7.1) (3.3.27 sid)
  • Revision ID: package-import@ubuntu.com-20120202120548-nvkma85jq0h4coix
Tags: 8.0~rc2-0ubuntu4
Drop drisearchdir handling, it is no longer needed with multiarch
and dri-alternates being removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#define NV50_SCREEN_RESIDENT_BO_COUNT 5
23
23
 
 
24
struct nv50_blitctx;
 
25
 
24
26
struct nv50_screen {
25
27
   struct nouveau_screen base;
26
 
   struct nouveau_winsys *nvws;
27
28
 
28
29
   struct nv50_context *cur_ctx;
29
30
 
39
40
   struct nouveau_resource *gp_code_heap;
40
41
   struct nouveau_resource *fp_code_heap;
41
42
 
 
43
   struct nv50_blitctx *blitctx;
 
44
 
42
45
   struct {
43
46
      void **entries;
44
47
      int next;
71
74
   return (struct nv50_screen *)screen;
72
75
}
73
76
 
 
77
boolean nv50_blitctx_create(struct nv50_screen *);
 
78
 
74
79
void nv50_screen_make_buffers_resident(struct nv50_screen *);
75
80
 
76
81
int nv50_screen_tic_alloc(struct nv50_screen *, void *);