~mmach/netext73/mesa-ryzen

« back to all changes in this revision

Viewing changes to src/nouveau/codegen/nv50_ir_from_tgsi.cpp

  • 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:
1205
1205
      break;
1206
1206
   case TGSI_PROPERTY_TES_POINT_MODE:
1207
1207
      if (prop->u[0].Data)
1208
 
         info_out->prop.tp.outputPrim = PIPE_PRIM_POINTS;
 
1208
         info_out->prop.tp.outputPrim = MESA_PRIM_POINTS;
1209
1209
      else
1210
 
         info_out->prop.tp.outputPrim = PIPE_PRIM_TRIANGLES; /* anything but points */
 
1210
         info_out->prop.tp.outputPrim = MESA_PRIM_TRIANGLES; /* anything but points */
1211
1211
      break;
1212
1212
   case TGSI_PROPERTY_CS_FIXED_BLOCK_WIDTH:
1213
1213
      info->prop.cp.numThreads[0] = prop->u[0].Data;