- Home /
Dynamic image loading
Currently I am working on a project which requires streaming image data (PNG or JPG) to a plane (or alternatively to the screen). I am currently running into an issue very similar to the one found in the following post: http://answers.unity3d.com/questions/29064/texture2dloadimage-lag.html. As I am using the Hololens, I cannot achieve performance above 5 FPS (for a 1024x1024 image). This data is being generated realtime from an external engine (so I cannot cache the images). I have tried both Texture2d.LoadImage and Texture2d.LoadRawTextureData. Is there any faster way to stream data to the screen (either loading onto a texture or directly BitBlting it to the screen). Thanks in advance!
Your answer
Follow this Question
Related Questions
Display compressed Image data in Unity 0 Answers
Create Texture2D and assign image to it through a script 1 Answer
Two flat textures interfere with each other when both on z=0 2 Answers
How do you create animated textures with Texture2D.Apply with any regularity? 1 Answer
Reloading texture2d from code 1 Answer