Fex
Gold Supporter
|
Engine fails to build on Linux
Checked out the latest, 6eac72b8989970ee7a655e0cc9fcb1d6f66ffcde, couldn't compile engine on ubuntu 22.04
../Source/Misc/Application.cpp:508:36: error: no member named 'u' in 'EE::VecB4'
data[2+x+y*src->w()]=c.u;
Had to change it to data[2+x+y*src->w()]=c.data; to compile.
|
|
03-31-2024 06:36 AM |
|
Esenthel
Administrator
|
RE: Engine fails to build on Linux
Thank you
I have fixed!
|
|
03-31-2024 07:28 AM |
|
Fex
Gold Supporter
|
RE: Engine fails to build on Linux
Also in Tutorial 6 - Simple 3D
Box(1).draw(BLACK);
needs to be changed to:
Box().setC(1).draw(BLACK);
|
|
03-31-2024 07:33 AM |
|
Esenthel
Administrator
|
RE: Engine fails to build on Linux
Thank you
I have fixed!
|
|
03-31-2024 07:50 AM |
|