[00:07:41] *** ImQ009 <ImQ009!~ImQ009@unaffiliated/imq009> has quit IRC (Quit: Leaving)
[00:09:38] *** bigpet <bigpet!uid25664@gateway/web/irccloud.com/x-udejcogcsvowsgqy> has quit IRC (Quit: Connection closed for inactivity)
[00:10:14] *** jsgrant <jsgrant!~jsgrant@71-11-142-172.dhcp.stls.mo.charter.com> has quit IRC (Read error: Connection reset by peer)
[00:11:45] *** jsgrant_ <jsgrant_!~jsgrant@2600-6c40-4000-0fd0-bd02-5630-1bc3-4c51.dhcp6.chtrptr.net> has joined ##vulkan
[00:11:46] *** Guest47556 <Guest47556!~john@host86-147-127-48.range86-147.btcentralplus.com> has quit IRC (Ping timeout: 240 seconds)
[00:20:31] *** spara_ <spara_!~spara@37.169.29.109> has joined ##vulkan
[00:23:36] *** spara <spara!~spara@ARennes-258-1-207-133.w2-11.abo.wanadoo.fr> has quit IRC (Ping timeout: 260 seconds)
[00:34:21] *** metalhead33 <metalhead33!~metalhead@540072D1.dsl.pool.telekom.hu> has left ##vulkan
[00:34:57] *** jkilpatr <jkilpatr!jkilpatr@nat/redhat/x-wpifkbvgvozoseuc> has quit IRC (Ping timeout: 240 seconds)
[00:35:11] *** Adrinael <Adrinael!adrinael@dsl-espbrasgw1-54fa70-128.dhcp.inet.fi> has quit IRC (Ping timeout: 255 seconds)
[00:35:19] *** Adrinael <Adrinael!adrinael@dsl-espbrasgw1-54fa70-128.dhcp.inet.fi> has joined ##vulkan
[00:36:15] *** soreau_ <soreau_!~soreau@unaffiliated/soreau> has joined ##vulkan
[00:38:33] *** soreau <soreau!~soreau@unaffiliated/soreau> has quit IRC (Ping timeout: 260 seconds)
[00:40:40] *** derhass <derhass!~derhass@ipservice-092-217-215-117.092.217.pools.vodafone-ip.de> has quit IRC (Quit: leaving)
[00:41:28] *** Biolunar <Biolunar!Biolunar@dslb-178-001-032-033.178.001.pools.vodafone-ip.de> has quit IRC (Ping timeout: 255 seconds)
[00:41:40] *** nsf <nsf!~nsf@jiss.convex.ru> has quit IRC (Quit: WeeChat 1.7.1)
[00:42:34] *** soreau_ is now known as soreau
[00:42:51] *** spara <spara!~spara@ARennes-258-1-207-133.w2-11.abo.wanadoo.fr> has joined ##vulkan
[00:44:48] *** spara_ <spara_!~spara@37.169.29.109> has quit IRC (Ping timeout: 240 seconds)
[00:45:54] *** spara_ <spara_!~spara@37.169.224.154> has joined ##vulkan
[00:48:20] *** spara <spara!~spara@ARennes-258-1-207-133.w2-11.abo.wanadoo.fr> has quit IRC (Ping timeout: 260 seconds)
[00:59:41] *** ravior <ravior!~crapitea@5-13-254-63.residential.rdsnet.ro> has quit IRC (Quit: Konversation terminated!)
[01:10:09] *** Guest47556 <Guest47556!~john@host86-147-127-48.range86-147.btcentralplus.com> has joined ##vulkan
[01:14:12] *** spara <spara!~spara@ARennes-258-1-207-133.w2-11.abo.wanadoo.fr> has joined ##vulkan
[01:18:12] *** spara_ <spara_!~spara@37.169.224.154> has quit IRC (Ping timeout: 268 seconds)
[01:22:06] *** rodarmor <rodarmor!sid210835@gateway/web/irccloud.com/x-gltmiaezpvwqeavy> has joined ##vulkan
[01:26:01] *** MrFlibble <MrFlibble!MrFlibble@2.122.46.163> has quit IRC (Quit: MrFlibble)
[01:26:58] *** Guest47556 <Guest47556!~john@host86-147-127-48.range86-147.btcentralplus.com> has quit IRC (Ping timeout: 255 seconds)
[01:29:25] *** snyp <snyp!~Snyp@103.56.236.64> has joined ##vulkan
[01:36:09] <ratchetfreak> so you can stop the callbacks
[01:37:14] <snyp> i don't understand.. the callback pointer sent in createinfo struct and this pCallback one, they are always going to be the same, right? why use different ones at all?
[01:40:45] <ratchetfreak> the parameter in create info returns the object representing the callback registration
[01:42:27] <snyp> yeah so pCallback is an output parameter.. it's always going to be set to the one i sent in via the createinfo. why?
[01:42:44] <snyp> *set to the function
[01:43:00] <chrisf> no, it's not a function passed back to you. it's a handle representing the registration.
[01:43:27] *** ector <ector!~asdf@37-247-11-157.customers.ownit.se> has quit IRC (Ping timeout: 240 seconds)
[01:43:32] <ratchetfreak> that is an opaque pointer
[01:43:51] <ratchetfreak> well opaque 64 bit value
[01:44:19] <chrisf> it's nondispatchable, so it's /not/ required to be a ptr. it's 64 bits of <none-of-your-business>
[01:44:32] <snyp> Its a `VkDebugReportCallbackEXT *` <--- VkDebugReportCallbackExt is just a function type.
[01:45:06] <chrisf> snyp: no, PFN_vkDebugReportCallbackEXT and VkDebugReportCallbackEXT are different types.
[01:45:08] <ratchetfreak> no PFN_VkDebugReportCallbackEXT is the function pointer type
[01:45:12] <ratchetfreak> that are different
[01:45:52] <snyp> o_o
[01:45:57] <chrisf> snyp: this shouldnt be any weirder than creating any other vulkan object
[01:46:02] <snyp> that's confusing.
[01:46:08] <snyp> i see.
[01:46:30] <snyp> that captial and small v makes all the difference.
[01:46:41] <snyp> ok thanks.
[01:47:12] <ratchetfreak> it's the PFN_ prefix that's also important...
[01:48:47] <snyp> vkDebugReportCallbackEXT and VkDebugReportCallbackEXT are rather similar looking. Former is a function, later is a struct. Overlooked that. Thought both are function types (the PFN_ amplified my brain's misconception).
[01:51:55] *** davr0s <davr0s!~textual@host86-162-141-50.range86-162.btcentralplus.com> has quit IRC (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
[01:57:30] *** rlariono_ <rlariono_!~rlarionov@68-202-221-190.res.bhn.net> has joined ##vulkan
[02:01:14] *** tarceri <tarceri!~tarceri@CPE-137-147-145-51.lnse7.win.bigpond.net.au> has quit IRC (Ping timeout: 246 seconds)
[02:01:29] *** slidercrank <slidercrank!~slidercra@ircpuzzles/2015/april-fools/fifth/slidercrank> has quit IRC (Quit: siht gnidaer er'uoy fi emit eerf hcum oot evah uoy :tiuQ)
[02:04:18] *** tarceri <tarceri!~tarceri@CPE-137-147-145-51.lnse7.win.bigpond.net.au> has joined ##vulkan
[02:12:31] <snyp> i mean the debug extension.
[02:17:35] <ratchetfreak> request the extension when creating the instance
[02:17:45] <snyp> oh
[02:25:53] <chrisf> snyp: in general, for instance extensions: determine whether it's available via vkEnumerateInstanceExtensions, and then include it in the extensions list in VkInstanceCreateInfo.
[02:26:09] <chrisf> you only get the extensions you request
[02:27:05] <snyp> i see. yeah got the debug callback extension now.
[02:27:16] *** ratchetfreak <ratchetfreak!~ratchetfr@ptr-82s3g7l9r42569r41f4.18120a2.ip6.access.telenet.be> has quit IRC (Ping timeout: 255 seconds)
[02:27:48] *** rlariono_ <rlariono_!~rlarionov@68-202-221-190.res.bhn.net> has quit IRC (Read error: Connection reset by peer)
[02:29:37] *** rlariono_ <rlariono_!~rlarionov@68-202-221-190.res.bhn.net> has joined ##vulkan
[02:31:20] <chrisf> snyp: what materials are you using to learn this?
[02:46:17] *** rlariono_ <rlariono_!~rlarionov@68-202-221-190.res.bhn.net> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[02:47:58] *** rlarionov <rlarionov!~roman@104.152.46.66> has quit IRC (Ping timeout: 255 seconds)
[03:02:01] *** Thinkofdname_ <Thinkofdname_!Think@2a01:7e00::f03c:91ff:febc:61ac> has joined ##vulkan
[03:02:03] *** Thinkofname <Thinkofname!~Think@li187-33.members.linode.com> has quit IRC (Read error: Connection reset by peer)
[03:02:04] *** Thinkofdname_ is now known as Thinkofname
[03:19:08] *** Neomex <Neomex!~Neomex@net-93-66-69-109.cust.vodafonedsl.it> has quit IRC (Quit: Leaving)
[03:21:39] *** snyp <snyp!~Snyp@103.56.236.64> has quit IRC (Quit: WeeChat 1.8)
[03:49:05] *** Altazimuth <Altazimuth!~Altazimut@05431766.skybroadband.com> has quit IRC (Ping timeout: 240 seconds)
[04:02:52] *** spara <spara!~spara@ARennes-258-1-207-133.w2-11.abo.wanadoo.fr> has quit IRC (Read error: Connection reset by peer)
[04:03:07] *** glYoda <glYoda!~MTLYoda@c-71-236-230-251.hsd1.or.comcast.net> has quit IRC (Quit: glYoda)
[04:10:02] *** sunbearc22 <sunbearc22!~sunbear@175.156.83.186> has joined ##vulkan
[04:12:16] *** ZexaronS <ZexaronS!~zexpc@cpe-194-152-22-45.static.triera.net> has quit IRC (Quit: Leaving)
[04:17:48] *** GMpow5srV <GMpow5srV!~goedelmac@55d406a5.access.ecotel.net> has joined ##vulkan
[04:21:27] *** GMpow3srV <GMpow3srV!~goedelmac@55d415c3.access.ecotel.net> has quit IRC (Ping timeout: 240 seconds)
[04:31:57] *** BearishMushroom <BearishMushroom!~BearishMu@90-231-174-194-no159.tbcn.telia.com> has quit IRC (Read error: Connection reset by peer)
[04:54:15] *** jo90 <jo90!~John90@111.92.58.103> has quit IRC (Ping timeout: 260 seconds)
[05:04:25] *** lemonpepper24 <lemonpepper24!~lemonpepp@gateway/vpn/privateinternetaccess/lemonpepper24> has joined ##vulkan
[05:05:11] *** glYoda <glYoda!~MTLYoda@c-71-236-230-251.hsd1.or.comcast.net> has joined ##vulkan
[05:43:16] *** ravior <ravior!~crapitea@82.78.253.129> has joined ##vulkan
[05:46:34] *** sla_ro|master <sla_ro|master!~sla.ro@95.76.45.217> has joined ##vulkan
[05:48:24] *** glYoda <glYoda!~MTLYoda@c-71-236-230-251.hsd1.or.comcast.net> has quit IRC (Quit: glYoda)
[05:53:39] *** HuntsMan <HuntsMan!~hunts@x4e3340bc.dyn.telefonica.de> has joined ##vulkan
[05:56:47] *** Hunts <Hunts!~hunts@x4e34d94d.dyn.telefonica.de> has quit IRC (Ping timeout: 260 seconds)
[06:28:41] *** sla_ro|master <sla_ro|master!~sla.ro@95.76.45.217> has quit IRC ()
[06:52:35] *** LeNsTR|away <LeNsTR|away!~lenstr@unaffiliated/lenstr> has joined ##vulkan
[06:54:20] *** tambry <tambry!~tambre@ec6a-a80d-e1e8-b13f-0e80-8a31-07d0-2001.dyn.estpak.ee> has joined ##vulkan
[07:07:17] *** davr0s <davr0s!~textual@host86-162-141-50.range86-162.btcentralplus.com> has joined ##vulkan
[07:20:02] *** bigpet <bigpet!uid25664@gateway/web/irccloud.com/x-yyuvysjnhfyvucla> has joined ##vulkan
[07:41:05] *** radamanthe <radamanthe!~tek@par69-1-82-67-27-111.fbx.proxad.net> has quit IRC (Ping timeout: 246 seconds)
[07:41:28] *** neure <neure!~tsuorant@46.163.250.82> has quit IRC (Ping timeout: 260 seconds)
[07:41:42] *** jsgrant_ <jsgrant_!~jsgrant@2600-6c40-4000-0fd0-bd02-5630-1bc3-4c51.dhcp6.chtrptr.net> has quit IRC (Ping timeout: 255 seconds)
[07:51:57] *** lemonpepper24 <lemonpepper24!~lemonpepp@gateway/vpn/privateinternetaccess/lemonpepper24> has quit IRC (Ping timeout: 240 seconds)
[07:54:48] *** rlarionov <rlarionov!~rlarionov@68-202-221-190.res.bhn.net> has joined ##vulkan
[07:56:31] *** rlarionov <rlarionov!~rlarionov@68-202-221-190.res.bhn.net> has quit IRC (Client Quit)
[07:57:59] *** toor_ <toor_!~toor@eth-east-parth2-46-193-65-52.wb.wifirst.net> has quit IRC (Remote host closed the connection)
[08:05:07] *** Deadhand <Deadhand!~deadhand@2607:fea8:e3a0:7bf::6> has quit IRC (Ping timeout: 260 seconds)
[08:13:47] *** glYoda <glYoda!~MTLYoda@c-71-236-230-251.hsd1.or.comcast.net> has joined ##vulkan
[08:15:40] *** neure <neure!~tsuorant@46.163.250.82> has joined ##vulkan
[08:24:03] *** tacchinotacchi <tacchinotacchi!~tacchinot@net-2-38-5-175.cust.vodafonedsl.it> has quit IRC (Remote host closed the connection)
[08:27:43] *** Deadhand <Deadhand!~deadhand@CPEf0f249a14e43-CMf0f249a14e40.cpe.net.cable.rogers.com> has joined ##vulkan
[08:37:45] *** xissburg_ <xissburg_!~xissburg@unaffiliated/xissburg> has joined ##vulkan
[08:37:48] *** xissburg <xissburg!~xissburg@unaffiliated/xissburg> has quit IRC (Ping timeout: 260 seconds)
[08:51:57] *** nsf <nsf!~nsf@jiss.convex.ru> has joined ##vulkan
[09:00:21] *** elect_ <elect_!~elect@business-092-079-135-041.static.arcor-ip.net> has joined ##vulkan
[09:00:24] *** elect_ <elect_!~elect@business-092-079-135-041.static.arcor-ip.net> has quit IRC (Read error: Connection reset by peer)
[09:04:54] *** davr0s <davr0s!~textual@host86-162-141-50.range86-162.btcentralplus.com> has quit IRC (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
[09:09:38] *** ImQ009 <ImQ009!~ImQ009@unaffiliated/imq009> has joined ##vulkan
[09:13:09] *** TechnoCrunch <TechnoCrunch!~TechnoCru@101.100.137.146> has joined ##vulkan
[09:46:52] *** realitix <realitix!~realitix@92.103.166.6> has joined ##vulkan
[09:48:33] *** ravior <ravior!~crapitea@82.78.253.129> has quit IRC (Quit: Konversation terminated!)
[09:54:25] *** neure <neure!~tsuorant@46.163.250.82> has quit IRC (Quit: Leaving)
[09:58:11] *** davr0s <davr0s!~textual@host86-162-141-50.range86-162.btcentralplus.com> has joined ##vulkan
[09:59:50] *** ratchetfreak <ratchetfreak!c351a8d8@gateway/web/freenode/ip.195.81.168.216> has joined ##vulkan
[10:06:28] *** LeNsTR|away <LeNsTR|away!~lenstr@unaffiliated/lenstr> has quit IRC (Ping timeout: 260 seconds)
[10:12:22] *** ImQ009 <ImQ009!~ImQ009@unaffiliated/imq009> has quit IRC (Quit: Leaving)
[10:27:25] *** Biolunar <Biolunar!Biolunar@dslb-094-220-165-083.094.220.pools.vodafone-ip.de> has joined ##vulkan
[10:28:25] *** goiko <goiko!~goiko@unaffiliated/goiko> has joined ##vulkan
[10:44:14] *** neure <neure!~tsuorant@46.163.250.82> has joined ##vulkan
[10:50:13] *** slidercrank <slidercrank!~slidercra@ircpuzzles/2015/april-fools/fifth/slidercrank> has joined ##vulkan
[10:55:37] *** davr0s <davr0s!~textual@host86-162-141-50.range86-162.btcentralplus.com> has quit IRC (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
[11:24:22] *** ravior <ravior!~crapitea@89.121.200.106> has joined ##vulkan
[11:25:26] *** davr0s <davr0s!~textual@host86-162-141-50.range86-162.btcentralplus.com> has joined ##vulkan
[11:31:20] *** Neomex <Neomex!~Neomex@net-2-36-119-198.cust.vodafonedsl.it> has joined ##vulkan
[11:45:24] *** neure <neure!~tsuorant@46.163.250.82> has quit IRC (Ping timeout: 260 seconds)
[11:51:06] *** jeremiah__ <jeremiah__!~jeremiah@cpe-76-170-232-236.socal.res.rr.com> has joined ##vulkan
[11:56:47] *** manenko <manenko!~textual@195.238.93.36> has joined ##vulkan
[12:06:58] *** exDM69_ is now known as exDM69
[12:07:06] *** ImQ009 <ImQ009!~ImQ009@unaffiliated/imq009> has joined ##vulkan
[12:17:12] *** manenko <manenko!~textual@195.238.93.36> has quit IRC (Quit: manenko)
[12:18:39] *** manenko <manenko!~manenko@195.238.93.36> has joined ##vulkan
[12:18:48] *** manenko <manenko!~manenko@195.238.93.36> has quit IRC (Client Quit)
[12:19:24] *** manenko <manenko!~manenko@195.238.93.36> has joined ##vulkan
[12:19:36] *** manenko <manenko!~manenko@195.238.93.36> has quit IRC (Client Quit)
[12:20:12] *** manenko <manenko!~manenko@195.238.93.36> has joined ##vulkan
[12:20:24] *** manenko <manenko!~manenko@195.238.93.36> has quit IRC (Client Quit)
[12:30:19] *** slidercrank <slidercrank!~slidercra@ircpuzzles/2015/april-fools/fifth/slidercrank> has quit IRC (Quit: siht gnidaer er'uoy fi emit eerf hcum oot evah uoy :tiuQ)
[12:47:53] *** TechnoCrunch <TechnoCrunch!~TechnoCru@101.100.137.146> has quit IRC (Read error: Connection reset by peer)
[12:52:34] *** kasumi-owari <kasumi-owari!~kasumi-ow@ftth-213-233-237-007.solcon.nl> has quit IRC (Ping timeout: 268 seconds)
[12:54:14] *** kasumi-owari <kasumi-owari!~kasumi-ow@ftth-213-233-237-007.solcon.nl> has joined ##vulkan
[12:56:02] *** sla_ro|master <sla_ro|master!~sla.ro@95.76.45.217> has joined ##vulkan
[12:56:52] *** manenko <manenko!~manenko@195.238.93.36> has joined ##vulkan
[12:59:59] *** jkilpatr <jkilpatr!jkilpatr@nat/redhat/x-pkmfsaqtomeayszy> has joined ##vulkan
[13:00:07] *** jkilpatr <jkilpatr!jkilpatr@nat/redhat/x-pkmfsaqtomeayszy> has quit IRC (Remote host closed the connection)
[13:00:19] *** jkilpatr <jkilpatr!jkilpatr@nat/redhat/x-twznzrinepqehpcv> has joined ##vulkan
[13:01:31] <tomaka> in the valid usage of vkCmdCopyBuffer there's:
[13:01:32] <tomaka> > The union of the source regions, and the union of the destination regions, specified by the elements of pRegions, must not overlap in memory
[13:01:41] <tomaka> that seems weird for the source regions
[13:01:55] <tomaka> isn't it possible to copy the same part of memory multiple times to multiple different destinations?.
[13:06:10] <exDM69> tomaka: that sounds a bit ambiguous but I read it differently than you
[13:06:20] <baldurk> you could also read that as saying "(union of src) must not overlap (union of dst)"
[13:06:30] <exDM69> to me it reads intersection(union(sources), union(destinations)) must be empty
[13:06:44] <exDM69> which makes much more sense
[13:07:11] <baldurk> though if you read it that way that implies that dst regions can overlap in themselves which sounds like something that might be intended to be prohibited?
[13:07:58] <tomaka> oh
[13:09:13] <exDM69> tomaka: I'd go with common sense here, and assume that sources may overlap with each other but destinations can't overlap with each other or the sources
[13:09:21] <exDM69> and file a bug asking for clarification
[13:09:59] *** Fats <Fats!~Fats@gateway/vpn/privateinternetaccess/fats> has quit IRC (Remote host closed the connection)
[13:10:42] <exDM69> also you could check what the validation layers think about it
[13:10:48] <exDM69> if they have a check for this
[13:11:06] *** navidr <navidr!uid112413@gateway/web/irccloud.com/x-fgondubtcovgjmfi> has joined ##vulkan
[13:11:08] *** Fats <Fats!~Fats@gateway/vpn/privateinternetaccess/fats> has joined ##vulkan
[13:18:18] *** ratchetfreak <ratchetfreak!c351a8d8@gateway/web/freenode/ip.195.81.168.216> has quit IRC (Quit: Page closed)
[13:25:12] *** ZexaronS <ZexaronS!~zexpc@cpe-194-152-22-45.static.triera.net> has joined ##vulkan
[13:29:40] *** slidercrank <slidercrank!~slidercra@ircpuzzles/2015/april-fools/fifth/slidercrank> has joined ##vulkan
[13:33:28] *** tacchinotacchi <tacchinotacchi!~tacchinot@net-2-38-5-175.cust.vodafonedsl.it> has joined ##vulkan
[13:33:39] *** ratchetfreak <ratchetfreak!c351a8d8@gateway/web/freenode/ip.195.81.168.216> has joined ##vulkan
[13:40:06] *** manenko <manenko!~manenko@195.238.93.36> has quit IRC (Quit: manenko)
[13:45:40] *** neure <neure!~tsuorant@46.163.250.82> has joined ##vulkan
[13:50:30] *** spara <spara!~spara@37.171.32.67> has joined ##vulkan
[13:59:29] *** drewbarbs <drewbarbs!~drewbarbs@2601:14a:601:f351:baa5:b3da:f88f:c85f> has quit IRC (Ping timeout: 258 seconds)
[14:00:03] *** davr0s <davr0s!~textual@host86-162-141-50.range86-162.btcentralplus.com> has quit IRC (Read error: Connection reset by peer)
[14:01:49] *** drewbarbs <drewbarbs!~drewbarbs@c-69-243-30-61.hsd1.md.comcast.net> has joined ##vulkan
[14:44:23] *** radamanthe <radamanthe!~tek@par69-1-82-67-27-111.fbx.proxad.net> has joined ##vulkan
[14:45:55] *** Altazimuth <Altazimuth!~Altazimut@05431766.skybroadband.com> has joined ##vulkan
[14:53:50] *** PortaLu is now known as Lucretia
[15:24:27] *** spara <spara!~spara@37.171.32.67> has quit IRC (Read error: Connection reset by peer)
[15:26:53] *** spara <spara!~spara@ARennes-258-1-207-133.w2-11.abo.wanadoo.fr> has joined ##vulkan
[15:27:22] *** pupsicle <pupsicle!~pupsicle@12.231.238.138> has joined ##vulkan
[15:27:43] *** tacchinotacchi <tacchinotacchi!~tacchinot@net-2-38-5-175.cust.vodafonedsl.it> has quit IRC (Remote host closed the connection)
[15:28:48] *** ImQ009 <ImQ009!~ImQ009@unaffiliated/imq009> has quit IRC (Read error: Connection reset by peer)
[15:31:44] *** Hunts <Hunts!~hunts@x4e34d928.dyn.telefonica.de> has joined ##vulkan
[15:32:17] *** HuntsMan <HuntsMan!~hunts@x4e3340bc.dyn.telefonica.de> has quit IRC (Ping timeout: 268 seconds)
[15:35:18] *** Hunts <Hunts!~hunts@x4e34d928.dyn.telefonica.de> has quit IRC (Client Quit)
[15:35:38] *** HuntsMan <HuntsMan!~hunts@x4e34d928.dyn.telefonica.de> has joined ##vulkan
[15:36:13] *** ZexaronS <ZexaronS!~zexpc@cpe-194-152-22-45.static.triera.net> has quit IRC (Quit: Leaving)
[15:52:31] *** ZexaronS <ZexaronS!~zexpc@cpe-194-152-22-45.static.triera.net> has joined ##vulkan
[16:03:06] *** Lucretia <Lucretia!~laguest@pdpc/supporter/active/lucretia> has quit IRC (Read error: Connection reset by peer)
[16:03:17] *** Lucretia <Lucretia!~laguest@pdpc/supporter/active/lucretia> has joined ##vulkan
[16:18:34] *** Lucretia <Lucretia!~laguest@pdpc/supporter/active/lucretia> has quit IRC (Remote host closed the connection)
[16:22:25] *** Lucretia <Lucretia!~laguest@pdpc/supporter/active/lucretia> has joined ##vulkan
[16:41:01] *** ravior <ravior!~crapitea@89.121.200.106> has quit IRC (Quit: Konversation terminated!)
[16:56:55] *** shiftedabsurdity <shiftedabsurdity!~shiftedab@69-174-170-31.lfytina1.metronetinc.net> has quit IRC (Quit: WeeChat 1.8)
[17:16:08] *** psychicist__ <psychicist__!~psychicis@ip127-8-212-87.adsl2.static.versatel.nl> has joined ##vulkan
[17:24:52] *** ravior <ravior!~crapitea@82.78.253.129> has joined ##vulkan
[17:28:53] *** ravior <ravior!~crapitea@82.78.253.129> has quit IRC (Remote host closed the connection)
[17:29:29] *** Chrismeister <Chrismeister!~Thunderbi@vas-vss-gw.net.mdh.se> has joined ##vulkan
[17:32:52] *** ravior <ravior!~crapitea@82.78.253.129> has joined ##vulkan
[17:33:28] *** ratchetfreak <ratchetfreak!c351a8d8@gateway/web/freenode/ip.195.81.168.216> has quit IRC (Quit: Page closed)
[17:34:43] *** lemonpepper24 <lemonpepper24!~lemonpepp@gateway/vpn/privateinternetaccess/lemonpepper24> has joined ##vulkan
[17:45:06] *** Chrismeister <Chrismeister!~Thunderbi@vas-vss-gw.net.mdh.se> has quit IRC (Quit: Chrismeister)
[17:47:15] *** ratchetfreak <ratchetfreak!c351a8d8@gateway/web/freenode/ip.195.81.168.216> has joined ##vulkan
[17:50:52] *** navidr <navidr!uid112413@gateway/web/irccloud.com/x-fgondubtcovgjmfi> has quit IRC (Quit: Connection closed for inactivity)
[18:17:40] *** ratchetfreak <ratchetfreak!c351a8d8@gateway/web/freenode/ip.195.81.168.216> has quit IRC (Ping timeout: 260 seconds)
[18:21:03] *** toor_ <toor_!~toor@eth-east-parth2-46-193-65-52.wb.wifirst.net> has joined ##vulkan
[18:23:52] *** ector <ector!~asdf@37-247-11-157.customers.ownit.se> has joined ##vulkan
[18:33:56] *** jkilpatr_ <jkilpatr_!jkilpatr@nat/redhat/x-twxsztgjuzzfpxmk> has joined ##vulkan
[18:36:15] *** jkilpatr <jkilpatr!jkilpatr@nat/redhat/x-twznzrinepqehpcv> has quit IRC (Ping timeout: 240 seconds)
[18:38:45] *** BearishMushroom <BearishMushroom!~BearishMu@90-231-174-194-no159.tbcn.telia.com> has joined ##vulkan
[18:56:06] *** ratchetfreak <ratchetfreak!~ratchetfr@ptr-82s3g7l9r42569r41f4.18120a2.ip6.access.telenet.be> has joined ##vulkan
[18:59:00] *** realitix <realitix!~realitix@92.103.166.6> has quit IRC (Quit: Leaving)
[19:03:30] *** ratchetfreak <ratchetfreak!~ratchetfr@ptr-82s3g7l9r42569r41f4.18120a2.ip6.access.telenet.be> has quit IRC (Read error: Connection reset by peer)
[19:03:55] *** ratchetfreak <ratchetfreak!~ratchetfr@ptr-82s3g7l9r42569r41f4.18120a2.ip6.access.telenet.be> has joined ##vulkan
[19:18:30] *** MrFlibble <MrFlibble!MrFlibble@2.122.46.163> has joined ##vulkan
[19:23:48] *** lemonpepper24 <lemonpepper24!~lemonpepp@gateway/vpn/privateinternetaccess/lemonpepper24> has quit IRC (Ping timeout: 260 seconds)
[19:27:55] *** Neomex_ <Neomex_!~Neomex@net-2-34-71-154.cust.vodafonedsl.it> has joined ##vulkan
[19:30:15] *** Neomex <Neomex!~Neomex@net-2-36-119-198.cust.vodafonedsl.it> has quit IRC (Ping timeout: 240 seconds)
[19:32:35] *** spara <spara!~spara@ARennes-258-1-207-133.w2-11.abo.wanadoo.fr> has quit IRC (Remote host closed the connection)
[19:32:40] *** GMpow3srV <GMpow3srV!~goedelmac@55d406a5.access.ecotel.net> has joined ##vulkan
[19:36:08] *** GMpow5srV <GMpow5srV!~goedelmac@55d406a5.access.ecotel.net> has quit IRC (Ping timeout: 246 seconds)
[19:36:50] *** GMpow2srV <GMpow2srV!~goedelmac@55d406a5.access.ecotel.net> has joined ##vulkan
[19:36:57] *** GMpow3srV <GMpow3srV!~goedelmac@55d406a5.access.ecotel.net> has quit IRC (Ping timeout: 240 seconds)
[19:44:12] *** pupsicle <pupsicle!~pupsicle@12.231.238.138> has quit IRC (Ping timeout: 260 seconds)
[19:45:57] *** GMpow3srV <GMpow3srV!~goedelmac@55d406a5.access.ecotel.net> has joined ##vulkan
[19:49:27] *** GMpow2srV <GMpow2srV!~goedelmac@55d406a5.access.ecotel.net> has quit IRC (Ping timeout: 240 seconds)
[19:49:28] *** pupsicle <pupsicle!~pupsicle@12.231.238.138> has joined ##vulkan
[19:50:01] *** tacchinotacchi <tacchinotacchi!~tacchinot@net-2-38-5-175.cust.vodafonedsl.it> has joined ##vulkan
[19:54:52] *** nsf <nsf!~nsf@jiss.convex.ru> has quit IRC (Quit: WeeChat 1.7.1)
[19:57:36] *** Lucretia <Lucretia!~laguest@pdpc/supporter/active/lucretia> has quit IRC (Remote host closed the connection)
[20:08:51] *** slidercrank <slidercrank!~slidercra@ircpuzzles/2015/april-fools/fifth/slidercrank> has quit IRC (Quit: Leaving)
[20:08:57] *** jkilpatr_ <jkilpatr_!jkilpatr@nat/redhat/x-twxsztgjuzzfpxmk> has quit IRC (Ping timeout: 240 seconds)
[20:09:55] *** pent_ <pent_!~pent@138.197.129.246> has left ##vulkan ("Leaving")
[20:15:36] *** jkilpatr <jkilpatr!jkilpatr@nat/redhat/x-dflddmamxgvprvag> has joined ##vulkan
[20:22:41] *** ratchetfreak <ratchetfreak!~ratchetfr@ptr-82s3g7l9r42569r41f4.18120a2.ip6.access.telenet.be> has quit IRC (Read error: Connection reset by peer)
[20:23:06] *** ratchetfreak <ratchetfreak!~ratchetfr@ptr-82s3g7l9r42569r41f4.18120a2.ip6.access.telenet.be> has joined ##vulkan
[20:29:23] *** Biolunar <Biolunar!Biolunar@dslb-094-220-165-083.094.220.pools.vodafone-ip.de> has quit IRC (Quit: leaving)
[20:29:35] *** derhass <derhass!~derhass@ipservice-092-217-215-117.092.217.pools.vodafone-ip.de> has joined ##vulkan
[20:30:08] *** ville__ <ville__!~ville@37-33-105-134.bb.dnainternet.fi> has joined ##vulkan
[20:31:48] *** Lucretia <Lucretia!~laguest@pdpc/supporter/active/lucretia> has joined ##vulkan
[20:32:05] *** ville <ville!~ville@37-33-155-109.bb.dnainternet.fi> has quit IRC (Ping timeout: 240 seconds)
[20:32:12] *** ville__ is now known as ville
[20:47:41] *** slidercrank <slidercrank!~slidercra@ircpuzzles/2015/april-fools/fifth/slidercrank> has joined ##vulkan
[20:53:22] *** opencw <opencw!~opencw@aftr-37-24-145-98.unity-media.net> has joined ##vulkan
[20:57:09] *** opencw <opencw!~opencw@aftr-37-24-145-98.unity-media.net> has quit IRC (Remote host closed the connection)
[21:03:55] *** xissburg_ is now known as xissburg
[21:05:07] *** Hunts <Hunts!~hunts@x4e34d928.dyn.telefonica.de> has joined ##vulkan
[21:05:27] *** HuntsMan <HuntsMan!~hunts@x4e34d928.dyn.telefonica.de> has quit IRC (Ping timeout: 245 seconds)
[21:13:07] *** Fats <Fats!~Fats@gateway/vpn/privateinternetaccess/fats> has quit IRC (Remote host closed the connection)
[21:14:16] *** Fats <Fats!~Fats@gateway/vpn/privateinternetaccess/fats> has joined ##vulkan
[21:17:58] *** spara <spara!~spara@ARennes-258-1-207-133.w2-11.abo.wanadoo.fr> has joined ##vulkan
[21:25:05] *** jsgrant_ <jsgrant_!~jsgrant@2600-6c40-4000-0fd0-bd02-5630-1bc3-4c51.dhcp6.chtrptr.net> has joined ##vulkan
[21:27:00] *** tambry <tambry!~tambre@ec6a-a80d-e1e8-b13f-0e80-8a31-07d0-2001.dyn.estpak.ee> has quit IRC (Ping timeout: 255 seconds)
[21:28:50] *** spara <spara!~spara@ARennes-258-1-207-133.w2-11.abo.wanadoo.fr> has quit IRC (Read error: Connection reset by peer)
[21:32:24] *** ImQ009 <ImQ009!~ImQ009@unaffiliated/imq009> has joined ##vulkan
[21:33:20] *** ector <ector!~asdf@37-247-11-157.customers.ownit.se> has quit IRC ()
[21:49:37] *** ector <ector!~asdf@37-247-11-157.customers.ownit.se> has joined ##vulkan
[21:56:57] *** jkilpatr <jkilpatr!jkilpatr@nat/redhat/x-dflddmamxgvprvag> has quit IRC (Ping timeout: 240 seconds)
[21:58:07] *** nsf <nsf!~nsf@jiss.convex.ru> has joined ##vulkan
[22:03:37] *** sunbearc22 <sunbearc22!~sunbear@175.156.83.186> has quit IRC (Quit: Leaving.)
[22:05:18] *** ImQ009 <ImQ009!~ImQ009@unaffiliated/imq009> has quit IRC (Quit: Leaving)
[22:07:11] *** sla_ro|master <sla_ro|master!~sla.ro@95.76.45.217> has quit IRC ()
[22:07:16] *** ratchetfreak <ratchetfreak!~ratchetfr@ptr-82s3g7l9r42569r41f4.18120a2.ip6.access.telenet.be> has quit IRC (Read error: Connection reset by peer)
[22:07:43] *** ratchetfreak <ratchetfreak!~ratchetfr@ptr-82s3g7l9r42569r41f4.18120a2.ip6.access.telenet.be> has joined ##vulkan
[22:14:48] *** jkilpatr <jkilpatr!~jkilpatr@2602:30a:c7da:b600:845f:2921:2881:c7ba> has joined ##vulkan
[22:14:53] *** jkilpatr <jkilpatr!~jkilpatr@2602:30a:c7da:b600:845f:2921:2881:c7ba> has quit IRC (Max SendQ exceeded)
[22:18:35] *** slidercrank <slidercrank!~slidercra@ircpuzzles/2015/april-fools/fifth/slidercrank> has quit IRC (Quit: siht gnidaer er'uoy fi emit eerf hcum oot evah uoy :tiuQ)
[22:18:47] *** spara <spara!~spara@ARennes-258-1-207-133.w2-11.abo.wanadoo.fr> has joined ##vulkan
[22:18:58] *** pupsicle <pupsicle!~pupsicle@12.231.238.138> has quit IRC (Ping timeout: 258 seconds)
[22:23:14] *** slidercrank <slidercrank!~slidercra@ircpuzzles/2015/april-fools/fifth/slidercrank> has joined ##vulkan
[22:23:16] *** ravior <ravior!~crapitea@82.78.253.129> has quit IRC (Quit: Konversation terminated!)
[22:24:01] *** Lucretia <Lucretia!~laguest@pdpc/supporter/active/lucretia> has quit IRC (Remote host closed the connection)
[22:24:31] *** spara <spara!~spara@ARennes-258-1-207-133.w2-11.abo.wanadoo.fr> has quit IRC (Remote host closed the connection)
[22:25:05] *** toor_ <toor_!~toor@eth-east-parth2-46-193-65-52.wb.wifirst.net> has quit IRC (Ping timeout: 240 seconds)
[22:33:04] *** slidercrank <slidercrank!~slidercra@ircpuzzles/2015/april-fools/fifth/slidercrank> has quit IRC (Quit: siht gnidaer er'uoy fi emit eerf hcum oot evah uoy :tiuQ)
[22:37:10] *** toor_ <toor_!~toor@76.ip-51-254-204.eu> has joined ##vulkan
[22:47:19] *** ector <ector!~asdf@37-247-11-157.customers.ownit.se> has quit IRC ()
[22:53:20] *** slidercrank <slidercrank!~slidercra@ircpuzzles/2015/april-fools/fifth/slidercrank> has joined ##vulkan
[22:55:37] *** pupsicle <pupsicle!~pupsicle@12.231.238.138> has joined ##vulkan
[22:57:10] *** Lucretia <Lucretia!~laguest@2a02:c7d:3c35:b000:820b:b4b:a960:89f2> has joined ##vulkan
[22:57:10] *** Lucretia <Lucretia!~laguest@2a02:c7d:3c35:b000:820b:b4b:a960:89f2> has quit IRC (Changing host)
[22:57:10] *** Lucretia <Lucretia!~laguest@pdpc/supporter/active/lucretia> has joined ##vulkan
[23:04:15] *** psychicist__ <psychicist__!~psychicis@ip127-8-212-87.adsl2.static.versatel.nl> has quit IRC (Ping timeout: 240 seconds)
[23:05:55] *** spara <spara!~spara@37.167.27.148> has joined ##vulkan
[23:12:36] *** vitimiti <vitimiti!~Celtor@unaffiliated/vitimiti> has joined ##vulkan
[23:23:54] *** fkaa <fkaa!~tundmatu@c83-252-58-112.bredband.comhem.se> has quit IRC (Quit: Textual IRC Client: www.textualapp.com)
[23:28:53] *** xissburg <xissburg!~xissburg@unaffiliated/xissburg> has quit IRC (Read error: Connection reset by peer)
[23:43:28] *** pupsicle <pupsicle!~pupsicle@12.231.238.138> has quit IRC (Read error: Connection reset by peer)
[23:47:15] *** ZexaronS <ZexaronS!~zexpc@cpe-194-152-22-45.static.triera.net> has quit IRC (Quit: Leaving)
[23:51:35] *** xissburg <xissburg!~xissburg@unaffiliated/xissburg> has joined ##vulkan