Hello everyone!
I made a basic calculator software prototype which my company will be testing to see if the benefits are enough to justify full development. I used UE4 because I cannot write code and blueprints allowed me to create a prototype despite this.
Anyway, as it turns out, some of the computers in the office are so old that their integrated graphics do not support the necessary DirectX feature level (DX11, FL 10). After searching for a while, I’ve learned that running the project in OpenGL is a possible workaround solution. However, so far I have been unable to achieve this. Every time I try (by making a shortcut to the packaged .exe and adding the “-opengl” command line) I get the following error message:
Game files required to initialize the global shader library are missing from:
[insert packaged project’s location]
Please make sure the game is installed correctly.
Obviously, OpenGL is deprecated and not available as a targeted RHI choice in the Project Settings in the Editor. Do any of you know how to fix this? Or any other way I can circumvent the hardware incompatibility?