Re: [Mesa-dev] [PATCH] egl/gbm: Fix config validation

2019-10-02 Thread Robin Murphy
[ + some CCs that I probably should have figured out first time around... ] On 23/09/2019 16:40, Adam Jackson wrote: On Sat, 2019-09-21 at 18:07 +0100, Robin Murphy wrote: In converting to shift/size-based validation, we lost a condition from the ARGB/XRGB equivalence check, which left it worki

[Mesa-dev] [PATCH 2/2] nvc0: add support for GL_EXT_demote_to_helper_invocation

2019-10-02 Thread Ilia Mirkin
Signed-off-by: Ilia Mirkin --- This passes the available piglit tests (once they are fixed to not require GL 4.5) .../drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp| 12 src/gallium/drivers/nouveau/nv50/nv50_screen.c | 1 + src/gallium/drivers/nouveau/nvc0/nvc0_screen.c

[Mesa-dev] [PATCH 1/2] gallium/tgsi: add support for DEMOTE and READ_HELPER opcodes

2019-10-02 Thread Ilia Mirkin
This mirrors the intrinsics in the GLSL IR. One could imagine an alternate definition where reading the semantic would account for the READ_HELPER functionality, but that feels potentially dodgy and could be subject to CSE unpleasantness. Signed-off-by: Ilia Mirkin --- .../auxiliary/tgsi/tgsi_in