I have an existing depth texture and some other color textures, and want to process the information in them by rendering to a
3D texture (based on the depth contained in the depth texture, i.e. a point at (x/y) in the depth texture will be rendered to (x/y/texture(depth,uv)) in the
3D texture).
Simply doing one manual draw call for each slice of
…