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

« back to all changes in this revision

Viewing changes to src/gallium/drivers/svga/svga_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:
49
49
 
50
50
   SVGA3dHardwareVersion hw_version;
51
51
 
52
 
   unsigned use_ps30;
53
 
   unsigned use_vs30;
54
 
   
55
52
   struct {
56
53
      boolean force_level_surface_view;
57
54
      boolean force_surface_view;
65
62
 
66
63
   pipe_mutex swc_mutex; /* Used for buffer uploads */
67
64
 
 
65
   /* which formats to translate depth formats into */
 
66
   struct {
 
67
     enum SVGA3dSurfaceFormat z16;
 
68
     /* note gallium order */
 
69
     enum SVGA3dSurfaceFormat x8z24;
 
70
     enum SVGA3dSurfaceFormat s8z24;
 
71
   } depth;
 
72
 
68
73
   struct svga_host_surface_cache cache;
69
74
};
70
75