You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Attempting to build the "glslPrecompiler" solution causes the following compiler error...
'rx::Image9' : cannot instantiate abstract class
...in "renderer9.cpp", line 3220.
It happens because the Image class' pure virtual function updateSurface() has an additional boolean argument at the end that the derived Image9 class' function does not have. That is, the function signatures do not match.
The text was updated successfully, but these errors were encountered:
Attempting to build the "glslPrecompiler" solution causes the following compiler error...
'rx::Image9' : cannot instantiate abstract class
...in "renderer9.cpp", line 3220.
It happens because the Image class' pure virtual function updateSurface() has an additional boolean argument at the end that the derived Image9 class' function does not have. That is, the function signatures do not match.
The text was updated successfully, but these errors were encountered: