On Wed, 15 Jun 2011 15:54:13 -0700, Chad Versace <c...@chad-versace.us> wrote:
> Replace instances of
>     irb->region = region
> with
>     intel_region_reference(&irb->region, region)

The comment is slightly misleading, as you are performing a replacement
of
  irb->region = intel_region_alloc();
with
  struct intel_region *region = intel_region_alloc();
  intel_region_reference(&irb->region, region);

I'm curious, what's the advantage? i.e. what am I not understanding that 
needs to be explained in the changelog?
-Chris

-- 
Chris Wilson, Intel Open Source Technology Centre
_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to