ChanServ changed the topic of #wayland to: https://wayland.freedesktop.org | Discussion about the Wayland protocol and its implementations, plus libinput
fmuellner has quit [Ping timeout: 480 seconds]
rasterman has joined #wayland
ryanneph has quit [Ping timeout: 480 seconds]
rasterman has quit [Quit: Gettin' stinky!]
garnacho has quit [Read error: Connection reset by peer]
garnacho has joined #wayland
riteo has quit [Ping timeout: 480 seconds]
riteo has joined #wayland
karenw_ has joined #wayland
karenw has quit [Ping timeout: 480 seconds]
nerdopolis has quit [Ping timeout: 480 seconds]
iomari891 has joined #wayland
mclasen has quit [Ping timeout: 480 seconds]
Company has quit [Ping timeout: 480 seconds]
Company has joined #wayland
riteo has quit [Ping timeout: 480 seconds]
garnacho has quit [Ping timeout: 480 seconds]
riteo has joined #wayland
bbhtt has left #wayland [#wayland]
eluks has quit [Remote host closed the connection]
eluks has joined #wayland
glennk has joined #wayland
Company has quit [Remote host closed the connection]
iomari891 has quit [Ping timeout: 480 seconds]
kts has joined #wayland
kts has quit [Ping timeout: 480 seconds]
kts has joined #wayland
d42 has quit [Ping timeout: 480 seconds]
meltq has joined #wayland
meltq has quit [Quit: meltq]
bodiccea has joined #wayland
sima has joined #wayland
yrlf has quit [Quit: Ping timeout (120 seconds)]
yrlf has joined #wayland
yrlf has quit [Quit: Ping timeout (120 seconds)]
tzimmermann has joined #wayland
yrlf has joined #wayland
garnacho has joined #wayland
kts has quit [Ping timeout: 480 seconds]
leon-anavi has joined #wayland
Tarnyko has joined #wayland
Tarnyko has quit [Remote host closed the connection]
tent4051 has quit [Read error: Connection reset by peer]
kts has quit [Ping timeout: 480 seconds]
tent4051 has joined #wayland
bwbuhse has quit [Ping timeout: 480 seconds]
yrlf has quit [Ping timeout: 480 seconds]
mclasen has joined #wayland
bwbuhse has joined #wayland
akimoto has joined #wayland
bwbuhse_ has joined #wayland
bwbuhse has quit [Read error: Connection reset by peer]
bwbuhse_ is now known as bwbuhse
yrlf has joined #wayland
mclasen has quit [Quit: mclasen]
mclasen has joined #wayland
yrlf has quit [Quit: Ping timeout (120 seconds)]
yrlf has joined #wayland
yrlf has quit [Quit: Ping timeout (120 seconds)]
sima has quit [Ping timeout: 480 seconds]
yrlf has joined #wayland
bitblt_ has joined #wayland
bitblt has quit [Ping timeout: 480 seconds]
bitblt_ is now known as bitblt
Drakulix has quit [Remote host closed the connection]
Drakulix has joined #wayland
<tokyovigilante>
Can I ask a couple of questions about frame listeners? I have one set up for my EGL-based app but my callback is not currently being called. I also haven't actually implemented changing my drawable size in response to configure events yet (just showing a 640x480 EGL buffer currently) but if I get a surface configure event (ie the compositor has changed the window size etc) should I submit a new frame in response to this without
<kennylevinsen>
you should always respond to a configure event in a timely manner - frame callbacks are suggestions for when it is a good time to render the next frame, and might not arrive anytime soon
<kennylevinsen>
they also only fire once, and need to be reinstalled after that
<tokyovigilante>
thanks, that makes sense. Yup understood they only fire once but I am installing one at the end of each render call, and even the first one is not currently. although that may be a problem in my event loop