07:30Lynne: can compilers optimize imageLoad()+imageStore() if only a single component was updated?
08:54glehmann: Lynne: at least for amd no, imageStore always writes all components
08:56Lynne: I'm guessing there won't be that bad of a perf penalty to this, since cache lines are surely wider than 16-bits
08:57Lynne: wait, imageStore/Loads don't bypass cache, do they? I know they bypass texel cache on most implementations, I think
11:59mareko: they don't
12:00mareko: it's complicated
12:04Lynne: they don't bypass texel cache? I thought storage images were handled as nothing more than buffers when it came to accessing them
12:05mareko: the cache hierarchy is mostly general purpose now
12:09Lynne: nice