I was wondering what the fastest way to update textures generated via the CPU was.
In the past, I only updated textures infrequently, or at low rates, but now I want to update every frame.
I used to write to a system allocated block of memory then lock a D3D texture surface and memcpy the bits.
Looking at the D3D docs, I ...