~mmach/netext73/mesa-ryzen

« back to all changes in this revision

Viewing changes to src/intel/compiler/brw_compile_clip.c

  • Committer: mmach
  • Date: 2023-11-02 21:31:35 UTC
  • Revision ID: netbit73@gmail.com-20231102213135-18d4tzh7tj0uz752
2023-11-02 22:11:57

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
    * do all three:
64
64
    */
65
65
   switch (key->primitive) {
66
 
   case SHADER_PRIM_TRIANGLES:
 
66
   case MESA_PRIM_TRIANGLES:
67
67
      if (key->do_unfilled)
68
68
         brw_emit_unfilled_clip( &c );
69
69
      else
70
70
         brw_emit_tri_clip( &c );
71
71
      break;
72
 
   case SHADER_PRIM_LINES:
 
72
   case MESA_PRIM_LINES:
73
73
      brw_emit_line_clip( &c );
74
74
      break;
75
 
   case SHADER_PRIM_POINTS:
 
75
   case MESA_PRIM_POINTS:
76
76
      brw_emit_point_clip( &c );
77
77
      break;
78
78
   default: