GLES <= 3.1 lacks fma, added a define

This commit is contained in:
offtkp 2024-08-27 17:12:12 +03:00
parent 1674ad5a2c
commit e421f02500

View file

@ -44,6 +44,7 @@ std::string FragmentGenerator::getDefaultVertexShader() {
if (api == API::GLES) {
ret += R"(
#define USING_GLES 1
#define fma(a, b, c) ((a) * (b) + (c))
precision mediump int;
precision mediump float;