+void
+brw_blorp_params::exec(struct intel_context *intel) const
+{
+   switch (intel->gen) {
+   case 6:
+      gen6_blorp_exec(intel, this);
+      break;
+   case 7:
+      gen7_blorp_exec(intel, this);
+      break;
+   default:
+      /* BLORP is not supported before Gen7. */
+      assert(false);
+      break;
+   }
+}

Presumably the comment in the default case should be Gen6 ?

-- Chris
_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to