Created attachment 2434[details]
Support all videos in shaders
Support videos that are not 256x256 in shaders for ingame use. This allows any video (like video/idlogo.RoQ) to be used in a shader and appear as a texture ingame.
I am not comfortable applying this. You have basically written an interpolation routine which scales all videos to 256x256. Quite a large change. I would like to have Timbo/Angst wheigh in on this before I apply it, and whether we really want this.
I did not write the interpolation routine (CIN_ResampleCinematic), it was moved (without modification) out of CIN_DrawCinematic to be reused for videos in shaders. Videos are only resampled if the hardware doesn't support textures larger than 256x256 (see end of readQuadInfo function), this is also true for normal cinematics (with and without patch).
Basically it removes the hardcoded size of 256x256 for videos in shaders. Full size of the video is used, unless hardware doesn't support textures large enough. This is the same as normal cinematics (with and without patch).
Created attachment 2434 [details] Support all videos in shaders Support videos that are not 256x256 in shaders for ingame use. This allows any video (like video/idlogo.RoQ) to be used in a shader and appear as a texture ingame.