<div dir="auto">Ah, right. Thanks for the explanation! </div><div class="gmail_extra"><br><div class="gmail_quote">On Jan 4, 2017 14:02, "Ilia Mirkin" <<a href="mailto:imirkin@alum.mit.edu">imirkin@alum.mit.edu</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Wed, Jan 4, 2017 at 4:24 AM, Erik Faye-Lund <<a href="mailto:kusmabite@gmail.com">kusmabite@gmail.com</a>> wrote:<br>
> On Jan 2, 2017 06:03, "Ilia Mirkin" <<a href="mailto:imirkin@alum.mit.edu">imirkin@alum.mit.edu</a>> wrote:<br>
><br>
> Signed-off-by: Ilia Mirkin <<a href="mailto:imirkin@alum.mit.edu">imirkin@alum.mit.edu</a>><br>
> ---<br>
>  src/gallium/auxiliary/tgsi/<wbr>tgsi_info.c     |  2 +-<br>
>  src/gallium/docs/source/tgsi.<wbr>rst           | 11 +++++++++++<br>
>  src/gallium/include/pipe/p_<wbr>shader_tokens.h |  2 +-<br>
>  3 files changed, 13 insertions(+), 2 deletions(-)<br>
><br>
> diff --git a/src/gallium/auxiliary/tgsi/<wbr>tgsi_info.c<br>
> b/src/gallium/auxiliary/tgsi/<wbr>tgsi_info.c<br>
> index 37549aa..e34b8c7 100644<br>
> --- a/src/gallium/auxiliary/tgsi/<wbr>tgsi_info.c<br>
> +++ b/src/gallium/auxiliary/tgsi/<wbr>tgsi_info.c<br>
> @@ -106,7 +106,7 @@ static const struct tgsi_opcode_info<br>
> opcode_info[TGSI_OPCODE_LAST] =<br>
>     { 1, 3, 0, 0, 0, 0, 0, COMP, "CMP", TGSI_OPCODE_CMP },<br>
>     { 1, 1, 0, 0, 0, 0, 0, CHAN, "SCS", TGSI_OPCODE_SCS },<br>
>     { 1, 2, 1, 0, 0, 0, 0, OTHR, "TXB", TGSI_OPCODE_TXB },<br>
> -   { 0, 1, 0, 0, 0, 0, 1, NONE, "", 69 },      /* removed */<br>
> +   { 1, 1, 0, 0, 0, 0, 0, OTHR, "FBFETCH", TGSI_OPCODE_FBFETCH },<br>
>     { 1, 2, 0, 0, 0, 0, 0, COMP, "DIV", TGSI_OPCODE_DIV },<br>
>     { 1, 2, 0, 0, 0, 0, 0, REPL, "DP2", TGSI_OPCODE_DP2 },<br>
>     { 1, 2, 1, 0, 0, 0, 0, OTHR, "TXL", TGSI_OPCODE_TXL },<br>
> diff --git a/src/gallium/docs/source/<wbr>tgsi.rst<br>
> b/src/gallium/docs/source/<wbr>tgsi.rst<br>
> index d2d30b4..accbe1d 100644<br>
> --- a/src/gallium/docs/source/<wbr>tgsi.rst<br>
> +++ b/src/gallium/docs/source/<wbr>tgsi.rst<br>
> @@ -2561,6 +2561,17 @@ Resource Access Opcodes<br>
>    image, while .w will contain the number of samples for multi-sampled<br>
>    images.<br>
><br>
> +.. opcode:: FBFETCH - Load data from framebuffer<br>
> +<br>
> +  Syntax: ``FBFETCH dst, output``<br>
> +<br>
> +  Example: ``FBFETCH TEMP[0], OUT[0]``<br>
> +<br>
> +  Returns the color of the current position in the framebuffer from<br>
> +  before this fragment shader invocation. Always returns the same<br>
> +  value from multiple calls for a particular output within a single<br>
> +  invocation.<br>
> +<br>
><br>
><br>
> What does this instruction do under MRT? Tegra (AR20) has the ability to<br>
> select the MRT index...<br>
<br>
Fetches the relevant output's value. Just as with the new sysval-based<br>
implementation,<br>
<br>
DECL SV[0], COLOR[1]<br>
<br>
would fetch the value in RT1. This could be used to implement<br>
EXT_shader_framebuffer_fetch, although more cap's would be necessary<br>
to differentiate the use-cases.<br>
<br>
Cheers,<br>
<br>
  -ilia<br>
</blockquote></div></div>