[Mesa-dev] [PATCH 1/2] radeon/llvm: Valid pixel mode and EOP were inverted in export
Tom Stellard
tom at stellard.net
Thu Nov 29 07:55:41 PST 2012
On Tue, Nov 27, 2012 at 11:10:58PM +0100, Vincent Lejeune wrote:
> ---
For the series:
Reviewed-by: Tom Stellard <thomas.stellard at amd.com>
> lib/Target/AMDGPU/R600Instructions.td | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lib/Target/AMDGPU/R600Instructions.td b/lib/Target/AMDGPU/R600Instructions.td
> index d081824..1b9d462 100644
> --- a/lib/Target/AMDGPU/R600Instructions.td
> +++ b/lib/Target/AMDGPU/R600Instructions.td
> @@ -986,8 +986,8 @@ let Predicates = [isR600] in {
> def R600_Export : ExportInst
> {
> let Inst{52-49} = 1; // BURST_COUNT
> - let Inst{53} = 1; // VALID_PIXEL_MODE
> - let Inst{54} = eop;
> + let Inst{53} = eop;
> + let Inst{54} = 1; // VALID_PIXEL_MODE
> let Inst{62-55} = inst;
> let Inst{63} = 1; // BARRIER
> }
> --
> 1.8.0
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev
More information about the mesa-dev
mailing list