MrCooper_ has quit [Remote host closed the connection]
JohnnyonFlame has quit [Ping timeout: 480 seconds]
MrCooper_ has joined #dri-devel
MrCooper has quit [Ping timeout: 480 seconds]
MrCooper_ has quit [Ping timeout: 480 seconds]
MrCooper has joined #dri-devel
Company has quit [Quit: Leaving]
MrCooper_ has joined #dri-devel
MrCooper_ has quit [Read error: Connection reset by peer]
MrCooper_ has joined #dri-devel
MrCooper has quit [Ping timeout: 480 seconds]
xhgchen has quit []
MrCooper_ has quit [Ping timeout: 480 seconds]
pallavim has joined #dri-devel
MrCooper has joined #dri-devel
pallavim has quit [Ping timeout: 480 seconds]
MrCooper has quit [Remote host closed the connection]
MrCooper has joined #dri-devel
MrCooper has quit [Read error: Connection reset by peer]
MrCooper has joined #dri-devel
MrCooper_ has joined #dri-devel
MrCooper_ has quit [Remote host closed the connection]
MrCooper_ has joined #dri-devel
MrCooper has quit [Ping timeout: 480 seconds]
MrCooper_ has quit [Remote host closed the connection]
MrCooper_ has joined #dri-devel
MrCooper__ has joined #dri-devel
MrCooper has joined #dri-devel
MrCooper_ has quit [Ping timeout: 480 seconds]
MrCooper__ has quit [Ping timeout: 480 seconds]
MrCooper has quit [Ping timeout: 480 seconds]
Zopolis4 has quit []
MrCooper has joined #dri-devel
MrCooper_ has joined #dri-devel
MrCooper_ has quit [Remote host closed the connection]
MrCooper_ has joined #dri-devel
MrCooper has quit [Ping timeout: 480 seconds]
Duke`` has joined #dri-devel
MrCooper__ has joined #dri-devel
kts has joined #dri-devel
alanc has quit [Remote host closed the connection]
alanc has joined #dri-devel
MrCooper_ has quit [Ping timeout: 480 seconds]
MrCooper__ has quit [Ping timeout: 480 seconds]
MrCooper has joined #dri-devel
MrCooper_ has joined #dri-devel
sghuge has quit [Remote host closed the connection]
sghuge has joined #dri-devel
JPEW has quit [Ping timeout: 480 seconds]
JPEW has joined #dri-devel
sghuge has quit [Remote host closed the connection]
MrCooper has quit [Ping timeout: 480 seconds]
srslypascal has quit [Ping timeout: 480 seconds]
srslypascal has joined #dri-devel
MrCooper_ has quit [Ping timeout: 480 seconds]
JohnnyonF has quit [Read error: Connection reset by peer]
kzd has quit [Quit: kzd]
fab has joined #dri-devel
YuGiOhJCJ has joined #dri-devel
fab has quit [Ping timeout: 480 seconds]
junaid has joined #dri-devel
junaid_ has joined #dri-devel
danvet has joined #dri-devel
mairacanal[m] has quit []
MrCooper has joined #dri-devel
OftenTimeConsuming is now known as Guest4609
OftenTimeConsuming has joined #dri-devel
Guest4609 has quit [Ping timeout: 480 seconds]
pcercuei has joined #dri-devel
Haaninjo has joined #dri-devel
gouchi has joined #dri-devel
<DavidHeidelberg[m]>
enunes: Hey! Does xwayland gets detected correctly for you on CI?
<DavidHeidelberg[m]>
(for VK apps)
junaid_ has quit [Remote host closed the connection]
junaid has quit [Remote host closed the connection]
darkapex has quit [Remote host closed the connection]
darkapex has joined #dri-devel
warpme_____ has joined #dri-devel
<enunes>
DavidHeidelberg[m]: Xwayland seems to work for me, although I don't use it for VK, and the only caveat I know is currently if you start both Xorg and weston/Xwayland, CI will use Xorg
MrCooper has quit [Ping timeout: 480 seconds]
kts has quit [Quit: Leaving]
Leopold_ has quit [Remote host closed the connection]
pa has quit [Ping timeout: 480 seconds]
pa has joined #dri-devel
YuGiOhJCJ has quit [Quit: YuGiOhJCJ]
Leopold_ has joined #dri-devel
oneforall2 has quit [Remote host closed the connection]
<DavidHeidelberg[m]>
enunes: I tried locally on weston, it seems to be some ANGLE quirk
zehortigoza has quit [Remote host closed the connection]
MrCooper has joined #dri-devel
dviola has joined #dri-devel
Leopold_ has quit [Remote host closed the connection]
Leopold_ has joined #dri-devel
gouchi has quit [Remote host closed the connection]
gouchi has joined #dri-devel
<dj-death>
is there a NIR pass in charge of gather identical constants?
<dj-death>
I've introduced a new intrinsic and I see that 2 of them are not getting "merged" into one, and I'm guessing it's because one of the source is a constant and that points to 2 different identical values
pcercuei has quit [Read error: Connection reset by peer]
pcercuei has joined #dri-devel
<alyssa>
dj-death: Shouldn't nir_opt_cse take care of that?
<dj-death>
alyssa: thanks a lot, that's probably what I'm missing
<alyssa>
make sure your intrinsics are [CAN_REORDER, CAN_ELIMINATE]
<alyssa>
otherwise it's not valid to reorder and eliminate them => CSE can't touch them
<dj-death>
yep, I have those
<dj-death>
nope that's not doing it
<dj-death>
I think it's because the 2 things are in different branches
<dj-death>
one in the first if() { .. } block
<alyssa>
yes, CSE doesn't handle that
<dj-death>
the other in the else
<alyssa>
you need global code motion for that (i.e. nir_opt_gcm) but it's... probleematic
<alyssa>
I think Kayden was working on this area, they'll know more than I do :)
<dj-death>
thanks
camus has quit []
<alyssa>
I don't see how draw_vbo is supposed to work with indirect draws + user index buffers