~ubuntu-branches/ubuntu/raring/mesa/raring-proposed

« back to all changes in this revision

Viewing changes to src/mesa/drivers/dri/i965/brw_gs.h

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2011-06-19 21:26:00 UTC
  • mfrom: (1.6.1 upstream) (3.3.18 sid)
  • mto: (3.3.20 sid)
  • mto: This revision was merged to the branch mainline in revision 145.
  • Revision ID: james.westby@ubuntu.com-20110619212600-rleaapdmnbtstekb
Tags: 7.11~0-2
Thank you sbuild for giving a green light when that's not actually the
case. Fix missing Pre-Depends for the libegl1-mesa-drivers package
(multiarch-support).

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
struct brw_gs_prog_key {
43
43
   GLbitfield64 attrs;
44
44
   GLuint primitive:4;
45
 
   GLuint hint_gs_always:1;
46
45
   GLuint pv_first:1;
47
46
   GLuint need_gs_prog:1;
48
 
   GLuint pad:25;
 
47
   GLuint pad:26;
49
48
};
50
49
 
51
50
struct brw_gs_compile {
70
69
 
71
70
void brw_gs_quads( struct brw_gs_compile *c, struct brw_gs_prog_key *key );
72
71
void brw_gs_quad_strip( struct brw_gs_compile *c, struct brw_gs_prog_key *key );
73
 
void brw_gs_tris( struct brw_gs_compile *c );
74
72
void brw_gs_lines( struct brw_gs_compile *c );
75
 
void brw_gs_points( struct brw_gs_compile *c );
76
73
 
77
74
#endif