<div dir="ltr">On 21 May 2013 11:09, Jordan Justen <span dir="ltr"><<a href="mailto:jljusten@gmail.com" target="_blank">jljusten@gmail.com</a>></span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">On Tue, May 21, 2013 at 10:27 AM, Paul Berry <<a href="mailto:stereotype441@gmail.com">stereotype441@gmail.com</a>> wrote:<br>
> On 17 May 2013 19:11, Jordan Justen <<a href="mailto:jordan.l.justen@intel.com">jordan.l.justen@intel.com</a>> wrote:<br>
>><br>
>> Rather than pointing the surface_state directly at a single<br>
>> sub-image of the texture for rendering, we now point the<br>
>> surface_state at the top level of the texture, and configure<br>
>> the surface_state as needed based on this.<br>
>><br>
>> We now also need to stop setting the FORCE_ZERO_RTAINDEX bit<br>
>> in the clip date so render target array values other than zero<br>
>> will be used.<br>
><br>
><br>
> Clarifying question to make sure I understand the purpose of this patch: it<br>
> looks to me like you are *not* trying to enable support for gl_Layer (and<br>
> layered framebuffer attachments) in this patch; you are merely changing the<br>
> way SURFACE_STATE gets configured as a preparatory step, and you'll be<br>
> adding gl_Layer support later.  Is that correct?<br>
<br>
</div>It was my intent to essentially support gl_Layer with this patch. Of<br>
course, there are still missing pieces before it would be user<br>
visibible:<br>
* support layered depth/stencil<br>
* enable AMD_vertex_shader_layer (or GL 3.2)<br>
<div class="im"><br>
> If so, I think the subject line is a little misleading--"add support for"<br>
> frequently means "add a user-visible feature" and I think someone could<br>
> easily misunderstand this patch to be adding gl_Layer support.  To clarify<br>
> that there's no user-visible change involved here, perhaps we should say<br>
> something like "use SURFACE_STATE fields to select level/layer to render<br>
> to", or "stop using X/Y offsets to select level/layer to render to".<br>
<br>
</div>Would you prefer I delay the layered support portions of this patch,<br>
or just move it to a separate patch in this same series?<br>
<br>
I'm guessing you'd prefer to delay the layered support until a future<br>
series where everything can be enabled and made user-visible.<br></blockquote><div><br>I'm ok with the gl_Layer-related stuff going in now; I was mostly just confused by the commit subject.  How about if we defer the gen7_clip_state.c part of the patch until later (since there's a question about whether it's going to be correct in the long run, and if I'm not mistaken it's not necessary now), and leave the rest of the patch as is?  If we did that, and changed the subject line to something that doesn't imply that gl_Layer is finished yet (maybe "prepare for supporting layered color renderbuffers"?), that would be good enough for me.<br>
</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div><div class="h5"><br>
>> Signed-off-by: Jordan Justen <<a href="mailto:jordan.l.justen@intel.com">jordan.l.justen@intel.com</a>><br>
>> ---<br>
>>  src/mesa/drivers/dri/i965/brw_defines.h           |    2 +<br>
>>  src/mesa/drivers/dri/i965/gen7_clip_state.c       |    3 +-<br>
>>  src/mesa/drivers/dri/i965/gen7_wm_surface_state.c |   63<br>
>> +++++++++++++++------<br>
>>  3 files changed, 48 insertions(+), 20 deletions(-)<br>
>><br>
>> diff --git a/src/mesa/drivers/dri/i965/brw_defines.h<br>
>> b/src/mesa/drivers/dri/i965/brw_defines.h<br>
>> index fedd78c..d61151f 100644<br>
>> --- a/src/mesa/drivers/dri/i965/brw_defines.h<br>
>> +++ b/src/mesa/drivers/dri/i965/brw_defines.h<br>
>> @@ -539,6 +539,8 @@<br>
>>  #define GEN7_SURFACE_MULTISAMPLECOUNT_8         (3 << 3)<br>
>>  #define GEN7_SURFACE_MSFMT_MSS                  (0 << 6)<br>
>>  #define GEN7_SURFACE_MSFMT_DEPTH_STENCIL        (1 << 6)<br>
>> +#define GEN7_SURFACE_MIN_ARRAY_ELEMENT_SHIFT   18<br>
>> +#define GEN7_SURFACE_RENDER_TARGET_VIEW_EXTENT_SHIFT   7<br>
>><br>
>>  /* Surface state DW5 */<br>
>>  #define BRW_SURFACE_X_OFFSET_SHIFT             25<br>
>> diff --git a/src/mesa/drivers/dri/i965/gen7_clip_state.c<br>
>> b/src/mesa/drivers/dri/i965/gen7_clip_state.c<br>
>> index 29a5ed5..1256f32 100644<br>
>> --- a/src/mesa/drivers/dri/i965/gen7_clip_state.c<br>
>> +++ b/src/mesa/drivers/dri/i965/gen7_clip_state.c<br>
>> @@ -107,8 +107,7 @@ upload_clip_state(struct brw_context *brw)<br>
>>              GEN6_CLIP_XY_TEST |<br>
>>               dw2);<br>
>>     OUT_BATCH(U_FIXED(0.125, 3) << GEN6_CLIP_MIN_POINT_WIDTH_SHIFT |<br>
>> -             U_FIXED(255.875, 3) << GEN6_CLIP_MAX_POINT_WIDTH_SHIFT |<br>
>> -             GEN6_CLIP_FORCE_ZERO_RTAINDEX);<br>
>> +             U_FIXED(255.875, 3) << GEN6_CLIP_MAX_POINT_WIDTH_SHIFT);<br>
><br>
><br>
> This doesn't seem right to me--are you sure this is needed?  My reading of<br>
> the bspec is that min_array_element gets applied after the clipper forces<br>
> RTA index to 0, so it should still be ok for the clipper to force RTA index<br>
> to 0 when we're rendering to a layer other than 0.  It seems to me that the<br>
> only time we should clear the GEN6_CLIP_FORCE_ZERO_RTAINDEX bit is when we<br>
> want gl_Layer to take effect (which, if my earlier assumption is correct, we<br>
> don't want to do yet).<br>
<br>
</div></div>This goes along with the comment above.<br>
<div class="im"><br>
> And even when we do get around to enabling gl_Layer,<br>
> we won't want to do it unconditionally--we'll only want to enable it when<br>
> the current draw framebuffer is layered (because gl_Layer is supposed to be<br>
> ignored for non-layered framebuffers).<br>
<br>
</div>Hmm. Yeah, I'm not sure that scenario is handled properly by this.<br>
<div><div class="h5"><br>
>><br>
>>     ADVANCE_BATCH();<br>
>>  }<br>
>><br>
>> diff --git a/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c<br>
>> b/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c<br>
>> index 6c01545..5f15eff 100644<br>
>> --- a/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c<br>
>> +++ b/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c<br>
>> @@ -23,6 +23,7 @@<br>
>>  #include "main/mtypes.h"<br>
>>  #include "main/blend.h"<br>
>>  #include "main/samplerobj.h"<br>
>> +#include "main/texformat.h"<br>
>>  #include "program/prog_parameter.h"<br>
>><br>
>>  #include "intel_mipmap_tree.h"<br>
>> @@ -529,12 +530,13 @@ gen7_update_renderbuffer_surface(struct brw_context<br>
>> *brw,<br>
>>     struct gl_context *ctx = &intel->ctx;<br>
>>     struct intel_renderbuffer *irb = intel_renderbuffer(rb);<br>
>>     struct intel_region *region = irb->mt->region;<br>
>> -   uint32_t tile_x, tile_y;<br>
>>     uint32_t format;<br>
>>     /* _NEW_BUFFERS */<br>
>>     gl_format rb_format = _mesa_get_render_format(ctx,<br>
>> intel_rb_format(irb));<br>
>> -<br>
>> -   assert(!layered);<br>
>> +   uint32_t surftype;<br>
>> +   bool is_array = false;<br>
>> +   int depth = rb->Depth > 0 ? rb->Depth - 1 : 0;<br>
><br>
> As written, the "depth" variable holds the true depth minus one (since<br>
> that's what the hardware expects in the "depth" field of SURFACE_STATE).<br>
> That makes some of the math below confusing to follow (especially the<br>
> formula "depth = (6 * (depth + 1)) - 1;").  I'd recommend storing the true<br>
> depth in the "depth" variable, and don't subtract one until you store it in<br>
> surf[3].  So this line would become "int depth = MAX(rb->Depth, 1);", and<br>
> "depth = (6 * (depth + 1)) - 1;" would become "depth *= 6;".<br>
<br>
</div></div>Okay, I'll update the depth code based on your suggestions here and below.<br>
<span class="HOEnZb"><font color="#888888"><br>
-Jordan<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
>><br>
>> +   int min_array_element = 0;<br>
>><br>
>>     uint32_t *surf = brw_state_batch(brw, AUB_TRACE_SURFACE_STATE,<br>
>>                                      8 * 4, 32,<br>
>> &brw->wm.surf_offset[unit]);<br>
>> @@ -550,7 +552,23 @@ gen7_update_renderbuffer_surface(struct brw_context<br>
>> *brw,<br>
>>                      __FUNCTION__, _mesa_get_format_name(rb_format));<br>
>>     }<br>
>><br>
>> -   surf[0] = BRW_SURFACE_2D << BRW_SURFACE_TYPE_SHIFT |<br>
>> +   if (rb->TexImage) {<br>
>> +      surftype = translate_tex_target(rb->TexImage->TexObject->Target);<br>
>> +      is_array =<br>
>> _mesa_tex_target_is_array(rb->TexImage->TexObject->Target);<br>
>><br>
>> +      if (rb->TexImage->TexObject->Target == GL_TEXTURE_CUBE_MAP_ARRAY) {<br>
>> +         assert(rb->Depth > 0);<br>
>> +         surftype = BRW_SURFACE_2D;<br>
>> +         depth = (6 * (depth + 1)) - 1;<br>
>> +      } else if (rb->TexImage->TexObject->Target == GL_TEXTURE_CUBE_MAP)<br>
>> {<br>
>> +         surftype = BRW_SURFACE_2D;<br>
>> +         depth = 5;<br>
>> +         is_array = true;<br>
>> +      }<br>
><br>
><br>
> It reads awkwardly to me that in the case of GL_TEXTURE_CUBE_MAP_ARRAY and<br>
> GL_TEXTURE_CUBE_MAP we set surftype and is_array incorrectly and then<br>
> immediately override them with the correct values.  Consider something like<br>
> this instead:<br>
><br>
> switch (rb->TexImage->TexObject->Target) {<br>
> case GL_TEXTURE_CUBE_MAP_ARRAY:<br>
> case GL_TEXTURE_CUBE_MAP:<br>
>    surftype = BRW_SURFACE_2D;<br>
>    is_array = true;<br>
>    depth *=6;<br>
>    break;<br>
> default:<br>
>    surftype = translate_tex_target(...);<br>
>    is_array = _mesa_tex_target_is_array(...);<br>
>    break;<br>
> }<br>
><br>
>><br>
>> +   } else {<br>
>> +      surftype = BRW_SURFACE_2D;<br>
>> +   }<br>
>> +<br>
>> +   surf[0] = surftype << BRW_SURFACE_TYPE_SHIFT |<br>
>>               format << BRW_SURFACE_FORMAT_SHIFT |<br>
>>               (irb->mt->array_spacing_lod0 ? GEN7_SURFACE_ARYSPC_LOD0<br>
>>                                            : GEN7_SURFACE_ARYSPC_FULL) |<br>
>> @@ -561,24 +579,33 @@ gen7_update_renderbuffer_surface(struct brw_context<br>
>> *brw,<br>
>>     if (irb->mt->align_w == 8)<br>
>>        surf[0] |= GEN7_SURFACE_HALIGN_8;<br>
>><br>
>> -   /* reloc */<br>
>> -   surf[1] = intel_renderbuffer_tile_offsets(irb, &tile_x, &tile_y) +<br>
>> -             region->bo->offset; /* reloc */<br>
>> +   if (is_array) {<br>
>> +      surf[0] |= GEN7_SURFACE_IS_ARRAY;<br>
>> +   }<br>
>> +<br>
>> +   if (!layered) {<br>
>> +      if (irb->mt->num_samples > 1) {<br>
>> +         min_array_element = irb->mt_layer / irb->mt->num_samples;<br>
>> +      } else {<br>
>> +         min_array_element = irb->mt_layer;<br>
>> +      }<br>
>> +   }<br>
>> +<br>
>> +   surf[1] = region->bo->offset;<br>
>><br>
>>     assert(brw->has_surface_tile_offset);<br>
>> -   /* Note that the low bits of these fields are missing, so<br>
>> -    * there's the possibility of getting in trouble.<br>
>> -    */<br>
>> -   assert(tile_x % 4 == 0);<br>
>> -   assert(tile_y % 2 == 0);<br>
>> -   surf[5] = SET_FIELD(tile_x / 4, BRW_SURFACE_X_OFFSET) |<br>
>> -             SET_FIELD(tile_y / 2, BRW_SURFACE_Y_OFFSET);<br>
>><br>
>> -   surf[2] = SET_FIELD(rb->Width - 1, GEN7_SURFACE_WIDTH) |<br>
>> -             SET_FIELD(rb->Height - 1, GEN7_SURFACE_HEIGHT);<br>
>> -   surf[3] = region->pitch - 1;<br>
>> +   surf[5] = irb->mt_level;<br>
>> +<br>
>> +   surf[2] = SET_FIELD(irb->mt->logical_width0 - 1, GEN7_SURFACE_WIDTH) |<br>
>> +             SET_FIELD(irb->mt->logical_height0 - 1,<br>
>> GEN7_SURFACE_HEIGHT);<br>
>> +<br>
>> +   surf[3] = (depth << BRW_SURFACE_DEPTH_SHIFT) |<br>
>> +             (region->pitch - 1);<br>
>><br>
>> -   surf[4] = gen7_surface_msaa_bits(irb->mt->num_samples,<br>
>> irb->mt->msaa_layout);<br>
>> +   surf[4] = gen7_surface_msaa_bits(irb->mt->num_samples,<br>
>> irb->mt->msaa_layout) |<br>
>> +             min_array_element << GEN7_SURFACE_MIN_ARRAY_ELEMENT_SHIFT |<br>
>> +             depth << GEN7_SURFACE_RENDER_TARGET_VIEW_EXTENT_SHIFT;<br>
>><br>
>>     if (irb->mt->msaa_layout == INTEL_MSAA_LAYOUT_CMS) {<br>
>>        gen7_set_surface_mcs_info(brw, surf, brw->wm.surf_offset[unit],<br>
>> --<br>
>> 1.7.10.4<br>
>><br>
>> _______________________________________________<br>
>> mesa-dev mailing list<br>
>> <a href="mailto:mesa-dev@lists.freedesktop.org">mesa-dev@lists.freedesktop.org</a><br>
>> <a href="http://lists.freedesktop.org/mailman/listinfo/mesa-dev" target="_blank">http://lists.freedesktop.org/mailman/listinfo/mesa-dev</a><br>
><br>
><br>
><br>
> _______________________________________________<br>
> mesa-dev mailing list<br>
> <a href="mailto:mesa-dev@lists.freedesktop.org">mesa-dev@lists.freedesktop.org</a><br>
> <a href="http://lists.freedesktop.org/mailman/listinfo/mesa-dev" target="_blank">http://lists.freedesktop.org/mailman/listinfo/mesa-dev</a><br>
><br>
</div></div></blockquote></div><br></div></div>