<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jun 15, 2016 at 10:34 AM, Chad Versace <span dir="ltr"><<a href="mailto:chad.versace@intel.com" target="_blank">chad.versace@intel.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Tue 14 Jun 2016, Jason Ekstrand wrote:<br>
> On Jun 14, 2016 4:23 PM, "Chad Versace" <<a href="mailto:chad.versace@intel.com">chad.versace@intel.com</a>> wrote:<br>
> ><br>
> > anv_pipeline_binding::index is a uint8_t, but some code assigned to it<br>
> > UINT16_MAX.<br>
> > ---<br>
> >  src/intel/vulkan/anv_pipeline.c | 2 +-<br>
> >  1 file changed, 1 insertion(+), 1 deletion(-)<br>
> ><br>
> > diff --git a/src/intel/vulkan/anv_pipeline.c<br>
> b/src/intel/vulkan/anv_pipeline.c<br>
> > index 60b7c6b..b41e11e 100644<br>
> > --- a/src/intel/vulkan/anv_pipeline.c<br>
> > +++ b/src/intel/vulkan/anv_pipeline.c<br>
> > @@ -664,7 +664,7 @@ anv_pipeline_compile_fs(struct anv_pipeline *pipeline,<br>
> >           rt_bindings[0] = (struct anv_pipeline_binding) {<br>
> >              .set = ANV_DESCRIPTOR_SET_COLOR_ATTACHMENTS,<br>
> >              .binding = 0,<br>
> > -            .index = UINT16_MAX,<br>
> > +            .index = UINT8_MAX,<br>
><br>
> I believe we have a descriptive #define specifically for render targets.<br>
> Probably better to use that.<br>
<br>
</span>What #define did you have in mind? The only relevant one I found was<br>
<br>
  #define MAX_RTS 8<br>
</blockquote></div><br></div><div class="gmail_extra">ANV_DESCRIPTOR_SET_COLOR_ATTACHMENTS<br><br></div><div class="gmail_extra">Sorry I didn't give it to you last night, I was looking at patches from my phone.<br></div><div class="gmail_extra">--Jason<br></div></div>