[vulkan] Remove a dead FIXME

The flashing pink around the Q menu cursor was caused by vulkan command
buffer writes and draw queue population being out of phase, which was
fixed by the recent screen update changes (specifically,
42441e87d4).
This commit is contained in:
Bill Currie 2023-01-19 21:36:03 +09:00
parent cdc5f8a912
commit d7b1fceb12

View file

@ -617,11 +617,6 @@ pic_data (const char *name, int w, int h, const byte *data, vulkan_ctx_t *ctx)
*picdata++ = *col++ & alpha;
*picdata++ = alpha;
}
//FIXME live updates of the scrap aren't
//syncronized properly for some reason and result in stale texels being
//rendered (flashing pink around the Q menu cursor the first time it's
//displayed). I suspect simple barriers aren't enough and more
//sophisticated syncronization (events? semaphores?) is needed.
return pic;
}