[Mesa-dev] [PATCH 06/10] i965: Parameterize HiZ code to prepare for adding blitting.
Paul Berry
stereotype441 at gmail.com
Mon May 7 10:59:21 PDT 2012
On 2 May 2012 14:20, Chris Forbes <chrisf at ijw.co.nz> wrote:
> +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
>
Whoops, yes. Fixed.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/mesa-dev/attachments/20120507/47732240/attachment.htm>
More information about the mesa-dev
mailing list