Re: [Mesa-dev] [PATCH] radv: Translate logic ops.

2018-05-14 Thread Samuel Pitoiset
Nice catch Bas! With Ilia's suggestion, this patch is: Reviewed-by: Samuel Pitoiset On 05/14/2018 03:14 AM, Bas Nieuwenhuizen wrote: radeonsi could pass them through but the enum changed between Gallium and Vulkan, so we have to translate. In progress I made the

Re: [Mesa-dev] [PATCH] radv: Translate logic ops.

2018-05-14 Thread Bas Nieuwenhuizen
On Mon, May 14, 2018 at 5:09 AM, Nicholas Miell wrote: > On 05/13/2018 06:14 PM, Bas Nieuwenhuizen wrote: >> >> -#define V_028808_X_0X00 0x00 >> -#define V_028808_X_0X05 0x05 >> -#define

Re: [Mesa-dev] [PATCH] radv: Translate logic ops.

2018-05-13 Thread Nicholas Miell
On 05/13/2018 06:14 PM, Bas Nieuwenhuizen wrote: -#define V_028808_X_0X00 0x00 -#define V_028808_X_0X05 0x05 -#define V_028808_X_0X0A 0x0A -#define

Re: [Mesa-dev] [PATCH] radv: Translate logic ops.

2018-05-13 Thread Ilia Mirkin
On Sun, May 13, 2018 at 9:14 PM, Bas Nieuwenhuizen wrote: > radeonsi could pass them through but the enum changed between > Gallium and Vulkan, so we have to translate. > > In progress I made the register defines a bit more readable. > > CC: 18.0 18.1

[Mesa-dev] [PATCH] radv: Translate logic ops.

2018-05-13 Thread Bas Nieuwenhuizen
radeonsi could pass them through but the enum changed between Gallium and Vulkan, so we have to translate. In progress I made the register defines a bit more readable. CC: 18.0 18.1 Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=100430 ---