[00:32:25] *** bpmedley <bpmedley!~bpm@c-69-94-201-19.hs.gigamonster.net> has quit IRC (Ping timeout: 246 seconds)
[01:33:31] *** mandeep <mandeep!~mandeep@unaffiliated/mandeepb> has joined ##vulkan
[01:52:23] *** LunarJetman2 <LunarJetman2!~fa_eb_fe@188.29.165.252.threembb.co.uk> has joined ##vulkan
[01:55:03] *** LunarJetman <LunarJetman!~fa_eb_fe@92.40.248.141.threembb.co.uk> has quit IRC (Ping timeout: 245 seconds)
[02:07:27] *** LunarJetman2 <LunarJetman2!~fa_eb_fe@188.29.165.252.threembb.co.uk> has quit IRC (Ping timeout: 240 seconds)
[02:08:06] *** cocholate <cocholate!~cppfag@177.41.48.235> has joined ##vulkan
[02:09:53] *** MrCooper_ <MrCooper_!~MrCooper@2a02:120b:c3ff:5740:3a63:bbff:feca:3701> has joined ##vulkan
[02:10:08] *** MrCooper <MrCooper!~MrCooper@116.245.63.188.dynamic.wline.res.cust.swisscom.ch> has quit IRC (Read error: Connection reset by peer)
[02:22:46] *** cocholate <cocholate!~cppfag@177.41.48.235> has quit IRC (Quit: cocholate)
[02:23:36] *** cocholate <cocholate!~cppfag@177.41.48.235> has joined ##vulkan
[02:36:18] *** ratchetfreak <ratchetfreak!~ratchetfr@ptr-82s3g7mshmuppe4qf4b.18120a2.ip6.access.telenet.be> has quit IRC (Ping timeout: 252 seconds)
[02:54:29] *** bpmedley <bpmedley!~bpm@c-69-94-201-19.hs.gigamonster.net> has joined ##vulkan
[02:58:38] *** glYoda <glYoda!~MTLYoda@c-73-25-27-206.hsd1.or.comcast.net> has quit IRC (Quit: glYoda)
[03:11:25] *** cocholate <cocholate!~cppfag@177.41.48.235> has quit IRC (Quit: cocholate)
[03:12:59] *** blackpawn <blackpawn!blackpawn@gateway/vpn/privateinternetaccess/blackpawn> has quit IRC (Remote host closed the connection)
[04:22:57] *** mandeep <mandeep!~mandeep@unaffiliated/mandeepb> has quit IRC (Remote host closed the connection)
[04:26:06] *** slime <slime!~slime73@blk-215-81-93.eastlink.ca> has quit IRC (Quit: This computer has gone to sleep)
[05:02:00] *** RicardasSim <RicardasSim!~RicardasS@78-63-172-44.static.zebra.lt> has quit IRC (Quit: Leaving)
[05:06:29] *** RicardasSim <RicardasSim!~RicardasS@78-63-172-44.static.zebra.lt> has joined ##vulkan
[05:40:22] *** jfpoole <jfpoole!~textual@24-246-14-142.cable.teksavvy.com> has quit IRC (Quit: Textual IRC Client: www.textualapp.com)
[06:06:56] *** computerquip <computerquip!computerqu@unaffiliated/noxzema> has joined ##vulkan
[06:12:08] *** mandeep <mandeep!~mandeep@unaffiliated/mandeepb> has joined ##vulkan
[06:54:48] *** soul-d <soul-d!~name@2a02:a44a:bcae:1:b5d8:ebd4:54b6:8bf> has quit IRC (Ping timeout: 252 seconds)
[07:37:21] *** glYoda <glYoda!~MTLYoda@c-73-25-27-206.hsd1.or.comcast.net> has joined ##vulkan
[07:41:28] *** Deluxe <Deluxe!~Deluxe@2001:67c:1220:80e:e9:1d2:f14f:e47f> has joined ##vulkan
[08:05:12] *** soul-d <soul-d!~name@2a02:a44a:bcae:1:34f5:7e43:ac35:cec7> has joined ##vulkan
[08:46:18] *** emersont1 <emersont1!~emersont1@host109-155-5-173.range109-155.btcentralplus.com> has joined ##vulkan
[08:57:58] *** MrCooper_ is now known as MrCooper
[09:05:07] *** emersont1 <emersont1!~emersont1@host109-155-5-173.range109-155.btcentralplus.com> has quit IRC (Ping timeout: 240 seconds)
[09:12:33] *** neure <neure!~timo@mobile-access-5d6ae3-99.dhcp.inet.fi> has joined ##vulkan
[09:53:14] *** ratchetfreak <ratchetfreak!c351a8d8@gateway/web/freenode/ip.195.81.168.216> has joined ##vulkan
[10:10:23] *** s_20 <s_20!~simon@ra.xinutec.org> has quit IRC (Ping timeout: 255 seconds)
[10:20:11] *** s_20 <s_20!~simon@ra.xinutec.org> has joined ##vulkan
[10:29:37] <computerquip> The reallocation bugs me. It asks that the new alignment must match the old alignment, seemingly to mean that in the case the original pointer is valid, the alignment passed should be ignored.
[10:29:48] <computerquip> This means, I have to store the alignment of the old pointer somehow at first glance.
[11:00:01] <ratchetfreak> yeah, or you can extract the worst case alignment out of the old pointer by checking the least significant bits
[11:14:11] <sharpneli> "If pOriginal is non-NULL, the implementation must ensure that alignment is equal to the alignment used to originally allocate pOriginal" This is really weird
[11:14:36] <sharpneli> Why even bother to pass alignment there if you must keep track of the old one?
[11:23:47] <sharpneli> Hmmm. No wait.
[11:24:01] <sharpneli> "If pfnAllocation returns NULL, and if the implementation is unable to continue correct processing of the current command without the requested allocation"
[11:24:17] <sharpneli> Implementation doesn't refer to the implementation of the function. But the vulkan implementation in general
[11:25:12] <sharpneli> So that just means that if you get reallocation function called you can safely assume that the alignment is the same as original. As an example if you can give it more memory without moving it around you're allowed to do it, it's not allowed to suddenly change the alignment requirement.
[11:26:05] <computerquip> Oh, I see.
[11:26:16] <computerquip> That makes so much more sense.
[11:26:25] <sharpneli> Yap. It's reasonable and works as should be expected.
[12:04:11] *** emersont1 <emersont1!~emersont1@2a00:23c5:2e19:c400:977:f486:fb4d:791f> has joined ##vulkan
[12:52:31] *** ryp <ryp!ryp@gateway/vpn/privateinternetaccess/ryp> has joined ##vulkan
[13:01:51] *** slime <slime!~slime73@blk-215-81-93.eastlink.ca> has joined ##vulkan
[13:20:02] *** slime <slime!~slime73@blk-215-81-93.eastlink.ca> has quit IRC (Quit: This computer has gone to sleep)
[13:51:17] *** emersont1 <emersont1!~emersont1@2a00:23c5:2e19:c400:977:f486:fb4d:791f> has quit IRC (Ping timeout: 258 seconds)
[13:57:54] *** ryp <ryp!ryp@gateway/vpn/privateinternetaccess/ryp> has quit IRC (Ping timeout: 252 seconds)
[14:18:18] *** RicardasSim <RicardasSim!~RicardasS@78-63-172-44.static.zebra.lt> has quit IRC (Quit: Leaving)
[15:28:30] *** goiko <goiko!~goiko@unaffiliated/goiko> has joined ##vulkan
[16:37:38] *** Deluxe <Deluxe!~Deluxe@2001:67c:1220:80e:e9:1d2:f14f:e47f> has quit IRC (Remote host closed the connection)
[16:40:05] *** soul-d <soul-d!~name@2a02:a44a:bcae:1:34f5:7e43:ac35:cec7> has quit IRC (Remote host closed the connection)
[17:16:05] *** soul-d <soul-d!~name@2a02:a44a:bcae:1:c558:9638:cd5a:8bd> has joined ##vulkan
[18:09:07] *** emersont1 <emersont1!~emersont1@2a00:23c5:2e19:c400:977:f486:fb4d:791f> has joined ##vulkan
[18:13:33] *** LunarJetman2 <LunarJetman2!~fa_eb_fe@94.197.120.100.threembb.co.uk> has joined ##vulkan
[18:13:38] *** neure <neure!~timo@mobile-access-5d6ae3-99.dhcp.inet.fi> has quit IRC (Read error: Connection reset by peer)
[18:24:28] *** LunarJetman2 <LunarJetman2!~fa_eb_fe@94.197.120.100.threembb.co.uk> has quit IRC (Ping timeout: 246 seconds)
[18:26:26] *** LunarJetman2 <LunarJetman2!~fa_eb_fe@94.197.120.100.threembb.co.uk> has joined ##vulkan
[18:31:12] *** ryp <ryp!ryp@gateway/vpn/privateinternetaccess/ryp> has joined ##vulkan
[18:31:21] *** ratchetfreak <ratchetfreak!c351a8d8@gateway/web/freenode/ip.195.81.168.216> has quit IRC (Ping timeout: 256 seconds)
[18:45:19] *** Deluxe <Deluxe!~Deluxe@212.4.150.151> has joined ##vulkan
[18:48:22] *** emersont1 <emersont1!~emersont1@2a00:23c5:2e19:c400:977:f486:fb4d:791f> has quit IRC (Ping timeout: 259 seconds)
[19:04:26] *** emersont1 <emersont1!~emersont1@2a00:23c5:2e19:c400:977:f486:fb4d:791f> has joined ##vulkan
[19:16:45] *** emersont1 <emersont1!~emersont1@2a00:23c5:2e19:c400:977:f486:fb4d:791f> has quit IRC (Ping timeout: 252 seconds)
[19:36:48] <Ralith> hooray!
[20:07:55] *** emersont1 <emersont1!~emersont1@2a00:23c5:2e19:c400:977:f486:fb4d:791f> has joined ##vulkan
[20:37:00] *** ratchetfreak <ratchetfreak!~ratchetfr@ptr-82s3g7ne7axe82l8kqn.18120a2.ip6.access.telenet.be> has joined ##vulkan
[20:37:28] *** Ekho <Ekho!~Ekho@unaffiliated/ekho> has quit IRC (Quit: An alternate universe was just created where I didn't leave. But here, I left you. I'm sorry.)
[20:54:01] *** ryp <ryp!ryp@gateway/vpn/privateinternetaccess/ryp> has quit IRC (Quit: WeeChat 2.4)
[20:59:05] *** Ekho <Ekho!~Ekho@unaffiliated/ekho> has joined ##vulkan
[21:17:11] *** goiko <goiko!~goiko@unaffiliated/goiko> has quit IRC (Quit: ﴾͡๏̯͡๏﴿ O'RLY? Bye!)
[21:24:42] *** emersont1 <emersont1!~emersont1@2a00:23c5:2e19:c400:977:f486:fb4d:791f> has quit IRC (Remote host closed the connection)
[21:25:03] *** emersont1 <emersont1!~emersont1@2a00:23c5:2e19:c400:977:f486:fb4d:791f> has joined ##vulkan
[21:34:38] *** Andrej11 <Andrej11!~Andrej@BSN-176-129-143.dynamic.siol.net> has quit IRC (Read error: Connection reset by peer)
[21:35:13] *** Andrej11 <Andrej11!~Andrej@BSN-176-129-143.dynamic.siol.net> has joined ##vulkan
[21:51:08] *** Deluxe <Deluxe!~Deluxe@212.4.150.151> has quit IRC (Read error: Connection reset by peer)
[21:59:39] *** emersont1 <emersont1!~emersont1@2a00:23c5:2e19:c400:977:f486:fb4d:791f> has quit IRC (Ping timeout: 258 seconds)
[22:29:01] *** slime <slime!~slime73@blk-215-81-93.eastlink.ca> has joined ##vulkan
[23:30:19] *** yaakuro <yaakuro!~yaakuro@2001:41d0:8:e568::1> has left ##vulkan ("Who knows")
[23:34:12] *** Fats <Fats!fats@gateway/vpn/privateinternetaccess/fats> has quit IRC (Remote host closed the connection)
[23:35:21] *** Fats <Fats!fats@gateway/vpn/privateinternetaccess/fats> has joined ##vulkan